Javascript examples for jQuery:Text
Perform a case-insensitive search for text inside a div element:
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#myInput").on("keyup", function() { var value = $(this).val().toLowerCase(); $("#myDIV *").each(function() { $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1) });/*w ww. j a v a 2 s . co m*/ }); }); </script> </head> <body> <h2>Filter Anything</h2> <input id="myInput" type="text" placeholder="Search.."> <div id="myDIV"> <p>I am a paragraph.</p> <div>I am a div element inside div.</div> <button>I am a button</button> <button>Another button</button> <p>Another paragraph.</p> </div> </body> </html>