Hide element in 1 second - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:hide

Description

Hide element in 1 second

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(1000);
    });/*from  ww  w  . j av a  2s.c o m*/
    $(".btn2").click(function(){
        $("p").show(1000);
    });
});
</script>
</head>
<body>

<p>This is a paragraph.</p>

<button class="btn1">Hide</button>
<button class="btn2">Show</button>

</body>
</html>

Related Tutorials