0

i need a to make javascript select and click an image from an alt tag this is the code that i need to select and click with javascript <img alt="cat" src="img1.jpg">

this is what i tried to do document.querySelector('cat').click

Denny callĂ 
  • 115
  • 1
  • 6

1 Answers1

2

The selector should be img[alt="cat"]:

document.querySelector('img[alt="cat"]')
Anis R.
  • 6,656
  • 2
  • 15
  • 37