jQuery Effect - show() Method

« Previous Chapter Next Chapter »

Description:

The show( ) method simply shows each of the set of matched elements if they are hidden. There is another form of this method which controls the speed of the animation.

Syntax:

Here is the simple syntax to use this method:

Example

selector.show( );
                                        

Parameters:

Here is the description of all the parameters used by this method:

  • NA:

Example:

Example

<html>
<head>
   <script type="text/javascript"  src="../../js/jquery-2.2.0.js"></script>
   <script type="text/javascript" language="javascript">
   
   $(document).ready(function() {
     $("#show").click(function () {
        $(".Adivtag").show();
     });
     $("#hide").click(function () {
        $(".Adivtag").hide();
     });
   });
   </script>
   <style>
   .Adivtag{ margin:10px;padding:12px;
      border:2px solid #666;
      width:100px;
      height:100px;
    }
  </style>
</head>
<body>
   <div class="Adivtag">
      This is  SQUAR
   </div>
   <input id="hide" type="button" value="Hide" />   
   <input id="show" type="button" value="Show" />   
</body>
</html>
                                        
Code It Online

« Previous Chapter Next Chapter »

Have Any Suggestion? We Are Waiting To Hear from YOU!

Your Query was successfully sent!