Javascript examples for jQuery:Text
Hide text in <h4>
<html> <head> <title>Title of the document</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script> $(document).ready(function(){ $("h4").hide(); });/* ww w .j a v a2s . com*/ </script> </head> <body> <h4>I want to hide</h4> <h5>Test</h5> </body> </html>