javascript get all elements that has similiar id code example
Example 1: javascript get all elements of an id
// 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");
Example 2: get all a tags javascript
document.anchors