Hide text in <h4> - Javascript jQuery

Javascript examples for jQuery:Text

Description

Hide text in <h4>

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials