jquery string contains code example

Example 1: if str contains jquery

if (str.indexOf("Yes") >= 0)
  
  //case insensitive version
  if (str.toLowerCase().indexOf("yes") >= 0)

Example 2: javascript string contains

var string = "foo",
    substring = "oo";

console.log(string.includes(substring));

Example 3: jquery contains text

$( "div:contains( 'hello' )" )

Example 4: string contains in javascript

const string = "foo";
const substring = "oo";

console.log(string.includes(substring));

Example 5: javascript contains substring

var str = "We got a poop cleanup on isle 4.";
if(str.indexOf("poop") !== -1){
	alert("Not again");
}
//use indexOf (it returns position of substring or -1 if not found)

Example 6: string.contains javascript

var str = "We got a poop cleanup on isle 4.";
if(str.indexOf("poop") !== -1){
	alert("Not again");
}