Javascript examples for jQuery Method and Property:hide
The hide() method hides the selected elements.
$(selector).hide(speed, easing, callback);
Parameter | Require | Description | Value |
---|---|---|---|
speed | Optional. | speed of the hide 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 hide() method is completed | To learn more about callback, visit our jQuery Callback chapter |
Possible easing values:
The following code shows how to Hide all <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 ww w . j a v a2s .c o m*/ $(".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>