Created
December 1, 2022 05:47
-
-
Save markadrake/b150a839727d8372b45ddda026dbc4d2 to your computer and use it in GitHub Desktop.
Touch Friendly Sharepoint Dropdowns
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
var linksWithChildren = document.querySelectorAll("li.dynamic-children > a"); | |
for (var i = 0; i < linksWithChildren.length; i++){ | |
linksWithChildren[i].setAttribute("aria-haspopup","true") | |
} |
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
$('li.static.dynamic-children > a').attr('aria-haspopup', "true"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment