Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

getElementsByTagName

  • getElementsByTagName
<div></div>
<div></div>
<div></div>

<script>
var fields = document.getElementsByTagName('div');
for (var i=0; i < fields.length; i++) {
  //console.log(i);
  fields[i].innerHTML = "Hello " + i;
}
</script>