Skip to content

Instantly share code, notes, and snippets.

@ericjgruber
Created November 6, 2015 04:08
Show Gist options
  • Save ericjgruber/4bf9a2560b5860040a07 to your computer and use it in GitHub Desktop.
Save ericjgruber/4bf9a2560b5860040a07 to your computer and use it in GitHub Desktop.
Bounce a div on click
$(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