This answer tells which HTML elements can receive focus. Is there a jQuery selector that matches exactly these elements?
For now I\'m just using $(\'input,sele
$(\'input,sele
Instead of getting a list of focusable elements, you may want to try setting up a focus handler at the body element that captures focus events.
body
$(document.body).on("focus", "*", function(e) { //Scroll to e.target });