Skip to content

Instantly share code, notes, and snippets.

@nadavspi
Created February 25, 2015 22:52
Show Gist options
  • Select an option

  • Save nadavspi/c5a09f3f7cdbe86c8acf to your computer and use it in GitHub Desktop.

Select an option

Save nadavspi/c5a09f3f7cdbe86c8acf to your computer and use it in GitHub Desktop.
var $this = $j(this);
var $next = $this.next();
$this.on('click', function () {
$this.toggleClass('active')
.attr('aria-expanded', !$this.attr('aria-expanded') === 'true');
$next().toggleClass('no-display')
.attr('aria-hidden', !$next.attr('aria-hidden') === 'true');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment