Skip to content

Instantly share code, notes, and snippets.

@krugloid
Created March 29, 2016 06:14
Show Gist options
  • Save krugloid/60412cc97e80218cdc07 to your computer and use it in GitHub Desktop.
Save krugloid/60412cc97e80218cdc07 to your computer and use it in GitHub Desktop.
var clicks = 0;
$('.incr-button').on('click', function() {
clicks++;
$('.counter').text(clicks);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment