Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have 3 images with the same id="UserImages" i wanted to know if i can click on them and get the scr in jquery?

share|improve this question
3  
An html id attribute cannot have the same value multiple times. Use class attribute. – Chris Oct 14 '10 at 13:21

1 Answer

up vote 8 down vote accepted

First I'd switch them to classes (IDs must be unqiue):

<img class="UserImages" src="..." />

Then use a .class selector to find them, like this:

$("img.UserImages").click(function() {
  alert(this.src);
});
share|improve this answer
how would i get only the file name not the whole address? – Gully Oct 14 '10 at 13:34
@Gully - There's a few easy options for that, check out these questions: stackoverflow.com/questions/605696/get-file-name-from-url, stackoverflow.com/questions/1302306/… – Nick Craver Oct 14 '10 at 13:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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