Effect show() Method - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:show

Description

The show() method shows the hidden, selected elements.

Syntax

$(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"
easingOptional.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:

  • "swing" - moves slower at the beginning/end, but faster in the middle
  • "linear" - moves in a constant speed

The following code shows how to show all hidden <p> elements:

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials