Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save segunadebayo/8c426e1a01433f38b0f7f0e6a7a1546a to your computer and use it in GitHub Desktop.
Save segunadebayo/8c426e1a01433f38b0f7f0e6a7a1546a to your computer and use it in GitHub Desktop.
const getAllFocusableElements = (parent) => Array.from(parent.querySelectorAll('*')).filter(elm => elm.tabIndex > -1).sort((a,b) => a.tabIndex > b.tabIndex ? 1 : a.tabIndex < b.tabIndex ? -1 : 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment