Select by if element content matches regex pattern - Javascript jQuery

Javascript examples for jQuery:Selector

Description

Select by if element content matches regex pattern

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.7.1.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){/*from   w w w  .j av a 2 s . c  om*/
$('p').filter(function() {
    return (/Lorem/).test($(this).text());
}).css('background-color', 'red');
    });

      </script> 
   </head> 
   <body> 
      <p>Test</p> 
      <p>Lorem</p> 
      <p>Ipsum</p>  
   </body>
</html>

Related Tutorials