Created
January 14, 2025 22:12
-
-
Save shawnthompson/0ecc36f9925c758e462e2a1b99ae4d5c to your computer and use it in GitHub Desktop.
Bookmarklet: Remove tabindex
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
javascript:(function() { | |
var elements = document.querySelectorAll('[tabindex]'); | |
elements.forEach(function(element) { | |
element.removeAttribute('tabindex'); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment