Answers for "jquery check if string contains"

3

if str contains jquery

if (str.indexOf("Yes") >= 0)
  
  //case insensitive version
  if (str.toLowerCase().indexOf("yes") >= 0)
Posted by: Guest on July-01-2020
0

jquery check if string contains specific word

var a = 'how are you';
a.includes('are'); // will return true if string contains search term
Posted by: Guest on May-03-2021

Code answers related to "jquery check if string contains"

Code answers related to "Javascript"

Browse Popular Code Answers by Language