Created
June 20, 2017 05:46
-
-
Save AdamSoucie/3cea2cf5cffc45d8a2829d98a252c72f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function toggleARIAExpanded(menu) | |
{ | |
var isExpanded = menu.attr('aria-expanded'); | |
if( isExpanded === 'true' ) | |
{ | |
menu.attr('aria-expanded', 'false'); | |
menu.toggleClass('active'); | |
} | |
else | |
{ | |
menu.attr('aria-expanded', 'true'); | |
menu.toggleClass('active'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment