1 2 3 4 5 6 7 8 9 10 11 12 |
$( "div" ).click(function() { if ( $( this ).hasClass( "protected" ) ) { $( this ) .animate({ left: -10 }) .animate({ left: 10 }) .animate({ left: -10 }) .animate({ left: 10 }) .animate({ left: 0 }); } }); |

© 2022 CODEHAVEN