Skip to content

Instantly share code, notes, and snippets.

@oleksapro
Last active August 29, 2015 14:27
Show Gist options
  • Save oleksapro/9d71d292641aa1318ecd to your computer and use it in GitHub Desktop.
Save oleksapro/9d71d292641aa1318ecd to your computer and use it in GitHub Desktop.
as jquery
$('a').click(function() {
var clicks = $(this).data('clicks');
if (clicks) {
alert('odd number of clicks');
} else {
alert('even number of clicks');
}
$(this).data("clicks", !clicks);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment