[ANSWERED] javascript – i cannot get images with querySelector method
Solution 1 : document.querySelectorAll() returns a node list, not a single img element, so you can not do: imges.style.opacity=0; What you would have to do is iterate through that node…