Call function after toggle effect - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:toggle

Description

Call function after toggle effect

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(){
    $("button").click(function(){
        $("p").toggle(1000, function(){
            console.log("The toggle() method is finished!");
        });/*from  w w  w.ja v  a 2 s . c  om*/
    });
});
</script>
</head>
<body>

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

<button>Toggle between hide() and show()</button>

</body>
</html>

Related Tutorials