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.
Here is the simple syntax to use this method:
selector.show( );
Here is the description of all the parameters used by this method:
NA:
<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>
Your Query was successfully sent!