javascript get all elements of an id

JavaScript
// You can't
// You can only have 1 instance of an id per document
// You need to use classes instead

var x = document.getElementsByClassName("example");
Source

Also in JavaScript: