jQuery Method How to - Use hide()








Question

We would like to know how to use hide().

Answer


<html>
  <head>
    <script type="text/javascript" src='http://code.jquery.com/jquery-1.5.2.js'></script>
    <script type="text/javascript">
        $(document).ready(function(){<!-- w  w w.j  a  v  a  2 s. c  om-->
            $("p").hide();
        });
    </script>
  </head>
  <body>
          <p class="myClass">p</p>

          <span class="myClass">span class="myClass"</span>
  </body>
</html>

The code above is rendered as follows: