vote up 0 vote down star

I got such code:

$('.mainp').find('A[href$=jpg]','A[href$=jpeg]','A[href$=gif]','A[href$=png]').fancybox();

And it works only for .jpg files. When I change it to:

$('.mainp').find('A[href$=png]').fancybox();

It works for .png files. So what I'm doing wrong, that fancybox() is not working with all type of files?

flag

80% accept rate

1 Answer

vote up 4 vote down check

The commas belong in the string, I don't think find can take many parameters.

$('.mainp').find('A[href$=jpg], A[href$=png]').fancybox();

See also: Selectors/Multiple

link|flag

Your Answer

Get an OpenID
or

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