Javascript examples for jQuery Method and Property:toggle
Call function after toggle effect
<!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>