string contains in Jquery
Like this:
if (str.indexOf("Yes") >= 0)
Note that this is case-sensitive.
If you want a case-insensitive search, you can write
if (str.toLowerCase().indexOf("yes") >= 0)
Or,
if (/yes/i.test(str))
Comments
Post a Comment