Answers for "jquery contains text"

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
2

jquery contains text

$( "div:contains( 'hello' )" )
Posted by: Guest on December-30-2020
1

jquery find by innertext

$( "div:contains('innerText')" );
Posted by: Guest on August-14-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language