Created
November 6, 2015 04:08
-
-
Save ericjgruber/4bf9a2560b5860040a07 to your computer and use it in GitHub Desktop.
Bounce a div on click
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
$('div').click(function () { | |
$(this).effect('bounce', {times:3}, 500); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment