Created
February 27, 2019 01:01
-
-
Save mrlannigan/9d533cd6508c12ed88c8fac0139b45ec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const list = document.getElementsByTagName('img') | |
for (let i = 0; i < list.length; i += 1) { | |
const img = list.item(i); | |
if (arraytomakered.includes(img.src)) { | |
img.style.border = '5px solid red'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment