up vote 0 down vote favorite
share [g+] share [fb]

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.

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

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

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

Your Answer

 
or
required, but never shown

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