Javascript examples for jQuery Method and Property:slideToggle
Call a function after slide 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").slideToggle(1000, function(){ console.log("The slideToggle() method is finished!"); });/*from w w w . j a v a2 s . co m*/ }); }); </script> </head> <body> <p>This is a paragraph.</p> <button>Toggle slideUp() and slideDown()</button> </body> </html>