check if string contains substring jquery code example
Example 1: if str contains jquery
if (str.indexOf("Yes") >= 0)
//case insensitive version
if (str.toLowerCase().indexOf("yes") >= 0)
Example 2: jquery check if string contains specific word
var a = 'how are you';
a.includes('are'); // will return true if string contains search term