Skip to content

Instantly share code, notes, and snippets.

@shawnthompson
Created January 14, 2025 22:12
Show Gist options
  • Save shawnthompson/0ecc36f9925c758e462e2a1b99ae4d5c to your computer and use it in GitHub Desktop.
Save shawnthompson/0ecc36f9925c758e462e2a1b99ae4d5c to your computer and use it in GitHub Desktop.
Bookmarklet: Remove tabindex
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