Lets say i have 2 buttons,an input and a textarea,i know how to set tabindex="-1"
to prevent tabbing for each one of them separately.
Is there a quick way to prevent all buttons in my body from having tab focus,or all the elements of a class(for example all elements of class "foo")?
Im open to js suggestions as well.
<html>
<body>
<button>BUTTON 1</button><button class="foo">BUTTON 2</button>
<input class="foo">
<textarea></textarea>
</body>
</html>