Question

How would I go about targeting the below img with the src file?

<img src="left1.gif" alt="" />

$('img[src=left1.gif]').hide(); doesn't work

Was it helpful?

Solution

You need to put quotes around the string value of src in your selector. This helps resolves ambiguities with special characters, and seems to apply to the . in the filename.

$("img[src='left1.gif']").hide();

OTHER TIPS

Your HTML says left1.gif, but your jQuery says lift1.gif. Note also the quotes around my value:

$("img[src='left1.gif']").hide();
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top