Skip to content

Instantly share code, notes, and snippets.

@mrtag23
Created July 7, 2020 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrtag23/4d585f54c98b0cb9353f2e6bd599bd10 to your computer and use it in GitHub Desktop.
Save mrtag23/4d585f54c98b0cb9353f2e6bd599bd10 to your computer and use it in GitHub Desktop.
get all focusable elements
var focusable = document.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])');
var firstFocusable = focusable[0];
var lastFocusable = focusable[focusable.length - 1];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment