jquery string includes code example
Example 1: if str contains jquery
if (str.indexOf("Yes") >= 0)
//case insensitive version
if (str.toLowerCase().indexOf("yes") >= 0)
Example 2: js string contains
var string = "foo";
var substring = "oo";
console.log(string.indexOf(substring) !== -1);