Javascript examples for jQuery Method and Property:show
The show() method shows the hidden, selected elements.
$(selector).show(speed,easing,callback);
Parameter | Require | Description | Value |
---|---|---|---|
speed | Optional. | speed of the show effect. | Default value is 400 milliseconds Possible values: milliseconds "slow" "fast" |
easing | Optional. | speed of the element in different points of the animation. | Default value is "swing" |
callback | Optional. | A function to be executed after the show() method is completed | a function |
Possible easing values:
The following code shows how to show all hidden <p> elements:
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $(".btn1").click(function(){ $("p").hide(); });/*from w ww . j ava2 s . com*/ $(".btn2").click(function(){ $("p").show(); }); }); </script> </head> <body> <p>This is a paragraph.</p> <button class="btn1">Hide</button> <button class="btn2">Show</button> </body> </html>