Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For some strange reason, whenever I have a selector and expect to get multiple items, jQuery is only returning the first item, instead of the entire collection.

This is the HTML I have:

<a id="reply-424880" class="reply" href="#" rel="nofollow">Reply</a>
<a id="reply-424885" class="reply" href="#" rel="nofollow">Reply</a>

And the selector:

$('.reply').unbind('click').click(function(event) {
 ...
}

I have tried debugging using FireBug, and still get the same results. Using the work around I can get it to work:

$('a').each(function (index, element) {
            if ($(element).attr('class') == 'reply') {
                $(this).unbind('click').click(function(event) {
                     ...
                });
             }
});

I would like to use the built-in functionality instead of my work around. Any idea why only the first element would be returned?

share|improve this question
Does console.log( $('.reply') ) really return only one element? – Tomalak May 13 '10 at 15:50
2  
Are you sure that is the problem (it is only returning one item)? What does $('.reply').length return? – JohnFx May 13 '10 at 15:51
In this page, I have 51 links on the page and 7 links w/ a class "reply". $('.reply').length; returns "1", and $('a').length; return "51" I have this problem on 2 other pages that are not related to "replies". It is possible that something on my page is preventing the selector from working, but don't know what to look into. – Queti Mporta May 13 '10 at 16:06
Other responders are right, your example is correct. You may want to provide complete page for testing. Or remove some content from it, but please make sure it still fails your test. So far, there is no error to discuss. – Nikita Rybak May 13 '10 at 16:33
Btw instead of using if ($(element).attr('class') == 'reply') use ` if ($(element).hasClass("reply")` – adardesign May 13 '10 at 19:33

3 Answers

What you have should be working already, you can see an example here, this is a simple call:

$('.reply').unbind('click').click(function(event) {
  alert('hi there');
});​

You must have something outside the question affecting your links if the same handler's not being executed for all of them. If you're getting an attribute from the first only, make sure inside your function you're not doing something like $(".reply").attr("id"), you should be using this inside the handler, of you'll get the attribute from the first element matched.

Here's an example:

$('.reply').unbind('click').click(function(event) {
  alert($('.reply').attr("id")); //alerts "reply-424880" for both
});​

It should be like this:

$('.reply').unbind('click').click(function(event) {
  alert($(this).attr("id")); //alerts "reply-424880" for both
  //and use just this.id in this case, no need for jQuery .attr(), like this
  //alert(this.id);
});​
share|improve this answer
Yea I don't see where they could be going wrong... Definitely a simple call. +1 – Gabe May 13 '10 at 15:56

That should work but what about ...

$('.reply').each(function() { 
   $(this).unbind('click').click(function(event) {
      ... 
   });
});
share|improve this answer
up vote 0 down vote accepted

After leaving the workaround in place for a couple of months, I decided to try to see if there was anything on the page that was causing the problem.

By process of elimination, I was able to narrow down the error to the jquery.validate.js file. For some unknown reason, this file was causing the jQuery to only return the first value. I downloaded the latest version and the selectors now return all the elements that match.

share|improve this answer

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.