vote up 0 vote down star

Say i have 10 small images that i want to use as tooltips. Im assinging them all the same class, '.helper'

Im selecting helper, then calling

mouseenter(function() { $(".helper").stop(false,true).fadeIn(); })

I then want a div to popup, containing some text. This works fine if there's only one tooltip on the page, but as soon as there is more than one, whenever i hover over one, they all appear at the same time.

Have i got something fundamentally wrong?

Comments appreciated.

Thx

flag

52% accept rate

2 Answers

vote up 2 vote down check

Use this as the selector inside instead of the .helper selector again:

$('.helper').mouseenter(function() {
    // "this" now refers to the image that is being hovered...
    $(this).stop(false, true).fadeIn();
});
link|flag
brill thanks alot – maxp Mar 31 at 16:24
vote up 0 vote down

If you're wondering what the problem was, it was that when you called

 $(".helper")

within your function, you were getting all the elements with class helper, in stead of just the single element you wanted.

link|flag
Any the only solution is to use 'this' ? – maxp Mar 31 at 21:52
Yeah, what $(".helper") does is get you all elements with that class. When you do .each(fn), it cycles through each element in the set returned by $(".helper") and sets each one as "this" in the fn. – cdmckay Apr 1 at 4:54

Your Answer

Get an OpenID
or

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