Skip to content

Instantly share code, notes, and snippets.

@ckundo
Last active December 22, 2015 09:38
Show Gist options
  • Save ckundo/6452831 to your computer and use it in GitHub Desktop.
Save ckundo/6452831 to your computer and use it in GitHub Desktop.
$('.toggler').click(function(e) {
e.preventDefault();
$content = $(this).next("p");
$content.attr('aria-hidden', function(index, hiddenState) {
var toggleState = (hiddenState === 'true');
return !toggleState;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment