Skip to content

Instantly share code, notes, and snippets.

@richgcook
Last active August 29, 2015 13:56
Show Gist options
  • Save richgcook/9104649 to your computer and use it in GitHub Desktop.
Save richgcook/9104649 to your computer and use it in GitHub Desktop.
clickToggle replacement (flags)
var _clicked = false;
$('_').on('click', function(e) {
if (!_clicked) { // First click
about_clicked = true;
console.log('true');
} else { // Second click
about_clicked = false;
console.log('false');
}
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment