JSFiddle - React, Tailwind, and code Playground

by jt3k

HTML

<input id="one" type="text">
<input id="two" type="text">
<input id="three" type="text" tabindex="1">
<input id="four" type="text" tabindex="2">
<input id="five" type="text" tabindex="3">
<input id="six" type="text" tabindex="4">
<input id="seven" type="text">
<button id="button">снять табиндекс</button>

CSS

[tabindex] {
  background: #fec;
}

JavaScript

const elements = [one,
two,
three,
four,
five,
six,
seven];

button.onclick = function handleButton() {
  
  elements.forEach(el => {
   debugger;
   el.removeAttribute('tabindex');
  });
}