javascript select div based on property code example
Example 1: how to get element by attribute value in javascript
document.querySelectorAll('[data-foo="value"]');
Example 2: 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");