if body contains exact string, make variable true - Javascript jQuery

Javascript examples for jQuery:String

Description

if body contains exact string, make variable true

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.js"></script> 
  <script type="text/javascript">
    $(window).load(function(){/* ww w.j a v a 2  s. c o m*/
var test = $("body *").filter(function() {
      return $(this).text() === "Some text that I need" ? true : false;
}).length;
console.log(test)
    });

      </script> 
 </head> 
 <body> 
  <p>Some text</p> 
  <p> </p> 
  <p>Some text that I need</p>  
 </body>
</html>

Related Tutorials