Answers for "find string in string jquery"

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 search for string in text

if (str.indexOf("Yes") >= 0)
Posted by: Guest on June-03-2021

Code answers related to "find string in string jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language