Slide toggle callback
<html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function () { $(this).slideToggle("slow",function () { alert("done"); }); }); }); </script> </head> <body> <body> <div>Click me<button>button</button></div> </body> </html>
1. | Slide animation | ||
2. | Slide toggle and function | ||
3. | Slide toggle button | ||
4. | Fast slide toggle | ||
5. | Slide toggle in milliseconds | ||
6. | Slide toggle slow | ||
7. | slideToggle(speed, callback): height is adjusted |