vote up 0 vote down star

I am having 3 images. How can I access each one of them and then check the src to see if it matches a string. If the src matches a string, highlight the image.

flag

2 Answers

vote up 0 vote down check

if you want to a little bit more functionality than just adding css classes use:

$('img[src="matchingString"]').each(function() {
    $(this).addClass('MyCssClass');
});
link|flag
yes i neeeded each..this works – lols Jun 18 at 17:12
vote up 5 vote down
$(":img[src='matchString']").toggleClass('yourhighlightCSScalss')
link|flag
thank you for your answer – lols Jun 18 at 17:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.