avatar
query all element by class Javascript
document.querySelectorAll('button.seq-next').forEach(elem=>{
  // TODO
});

For example: if you want to disable element => can use elem.disabled=true;

document.querySelectorAll('button.seq-next').forEach(elem=>{
  // TODO
});
24
skip first child element
You need to login to do this manipulation!