jQuery show( speed, [callback] ) Method

« Previous Chapter Next Chapter »

Description:

The show( speed, [callback] ) method shows all matched elements using a graceful animation and firing an optional callback after completion.

Syntax:

Here is the simple syntax to use this method:

Example

selector.show( speed, [callback] );
                                        

Parameters:

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

  • speed: A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).

  • callback: This is optional parameter representing a function to call once the animation is complete.

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( 100 );
     });
     $("#hide").click(function () {
        $(".Adivtag").hide( 100 );
     });
   });
   </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!