vote up 1 vote down star

I'm having difficulty understanding why a particular selector isn't working for me. Admittedly I'm a bit of a JQuery newbie.

This correctly selects the first div.editbox on the page and colors it yellow:

$('div.editbox:first').css("background-color","yellow");

However, this if ... is construct makes the highlighted border appear for each box as it is moused-over.

$('div.editbox').bind('mouseover', function(e) {
    if ($(this).is('div.editbox:first')) {$(this).css("border", "1px solid red");}
});

I have tried variations such as '.editbox :first', '.editbox div:first', etc.

Essentially, I want to be able to reliably test whether this is the first or last element of with the class name.

Thanks!

Edit: here's the HTML I'm using:

<body>
<div class="container">
<p></p>
<div class="editbox" id="box1">Foo</div>
<div class="editbox" id="box2">Bar</div>
<div class="editbox" id="box3">Baz</div>
<div class="responsebox" id="rbox"></div>
</div>
</body>

This is just a proof-of-concept page; the actual page will of course be much more complex. Again: what I want is to reliably detect if I am in the first or last "div.editbox". A workaround I used is:

$('div.editbox:last').addClass("lasteditbox");

Then test for if ($(this).is(".lasteditbox")) which works, but it seems clumsy and I'm trying to learn the proper way to do this with JQuery.

flag
so you want the mouseover event only binded to the first? – TStamper May 20 at 16:11

4 Answers

vote up 2 vote down check

UPDATE: This works for the first element.

$('div.editbox').bind('mouseover', function(e) {
 if ($("div.editBox").index(this) == 0) {
      $(this).css("border", "1px solid red");
    }
});

And for the last element, this selector works:

if($("div.editBox").index(this) == ($("div.editBox").length-1)){
     $(this).css("color","red");
}
link|flag
Thanks, but that only picks it if it's the first child of the parent container; not the first element with the class name. – SylvanK May 20 at 16:31
Please try my update – José Basilio May 20 at 16:35
Sorry, doesn't pick it up at all. I'll add the html I'm using above. – SylvanK May 20 at 16:40
I finally got it to work. Try this. – José Basilio May 20 at 17:12
1  
It's probably a bug in jQuery – José Basilio May 20 at 17:24
show 2 more comments
vote up 2 vote down

If you want the mouseover on just the first occurence of the class editbox inside div

$('div.editbox:first').mouseover(function() {
   $(this).css("border", "1px solid red");
});

Edit

$('div.editbox').mouseover(function() {
   $(this).css("border", "1px solid yellow");
}).filter(':first').mouseover(function(){
  $(this).css("border", "1px solid red");
}).filter(':last').mouseover(function(){
  $(this).css("border", "1px solid blue");
})
link|flag
Thanks TStamper; the CSS is only as an example. I have a function running on all the elements, but I want it to behave differently on the first and last elements, so I need to be able to detect when the function is running inside those. – SylvanK May 20 at 16:27
updated to compare for all – TStamper May 20 at 16:42
I'm very sorry TStamper; I appreciate the approach you're taking, but I'm attaching a moderately complex event handler to each element. Your approach would mean I need to have 3 separate versions of that function; or alternately, take an argument to the function when bound as to whether this is the first, last, or a middle element. I suppose that approach could work, but again, I'm trying to find the "right" JQuery way of doing this. Is what I'm doing with $(this).is(".class:first") really not workable? – SylvanK May 20 at 16:53
Wont the second filter only apply to the subset of the first filter? Therefore the blue mouse over doesn't have any effect? (I could be wrong, I'm new to JQuery) – The Feast May 20 at 16:54
@Nick- the second filter is not nested within the first filter, so that selector is not applied to the next one – TStamper May 20 at 17:33
vote up 0 vote down

have u tried

if ($(this).is(':first')) {$(this).css("border", "1px solid red");}
link|flag
That catches every box again. – SylvanK May 20 at 16:32
vote up 0 vote down
    $('div.editbox').mouseover(function() {
       //change the css for all the elements
       $(this).css("background-color", "yellow");
    })
    .filter(':first,:last').mouseover(function(){
      //execlude the first and the last
      $(this).css("background-color", "Blue");
    })
link|flag

Your Answer

Get an OpenID
or

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