1 2 3 4 5 6 7 8 9 10 11 12 13 |
<script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script> </head> <body> <p>Click anywhere to shake the box.</p> <div id="toggle"></div> <script> $( document ).click(function() { $( "#toggle" ).effect( "shake" ); }); </script> |