Javascript String contains(substring)
String.prototype.contains = function(substring) { return this.indexOf(substring) != -1; }