vote up 1 vote down star

I need to select with jQuery <a href=""> , but only 'href' with extentions '.JPG' or '.jpg'

for example :

to find only this 'links'

<a target="_blank" href="images/test.jpg" class="highslide ">
   <img src="images/test.jpg" alt='img'/>
</a>

<a target="_blank" href="images/test.JPG" class="highslide ">
   <img src="images/test.JPG" alt='img'/>
</a>

but not this

<a target="_blank" href="galery.html" class="highslide ">
   <img src="images/test.JPG" alt='img'/>
</a>

thank You !!

flag

79% accept rate

2 Answers

vote up 4 vote down check
$("a[href$=.jpg], a[href$=.JPG]")...
link|flag
thank You !! – Alexander Corotchi Jul 5 at 12:20
vote up 2 vote down
$("a[href$='.jpg']")

See Selectors/attributeEndsWith in the jQuery documentation.

link|flag
it works !! thanks You – Alexander Corotchi Jul 5 at 12:19

Your Answer

Get an OpenID
or

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