Answers for "check if string exists 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

Code answers related to "check if string exists jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language