I have an image with a click event bound to it which grows/shrinks the image. I am using jQuery to place a magnifying glass in the top corner of the image. The problem is that clicking on the magnifying glass doesn't trigger the image's grow/shrink. Is there a jQuery way to pass the click on to the underlying element or to have the image subscribe to the magnifying glass's click event?

I know that I can put a click handler on the magnifying glass and have it trigger the image's click event, but I want to know if there is another, better way of doing this.

In response to comments my general HTML is:

<div style="position: relative">
   <img src="growme.jpg" />
   <img src="magnify.jpg" style="position: absolute; top: 0;" />
</div>

and Pseudo-code for jQuery

$(growme).load(
   $(growme).parent().append($(magnify));
   $(growme).click(...);
)
link|improve this question

What is the relationship between the two in the DOM? Can you show your HTML? – lonesomeday Mar 2 '11 at 18:25
@lonesomeday added psuedo code and html – mrtsherman Mar 2 '11 at 18:34
feedback

2 Answers

...have the image subscribe to the magnifying glass's click event?

Instead of having $('#image').click(...), do $('#image, #image .magnify').click().

link|improve this answer
this seems like a good idea. right now in the images .load event I call $(this).click and bind my click event. So it seems I would want to do something like $(this, $(this).next()).click. Not sure if that is valid code though. – mrtsherman Mar 2 '11 at 18:38
hmmm. not working out so well. the click event needs to belong to the underlying image because that is what is being resized, not the magnifying glass which is .next. I need a click on the magnifying glass to call the click event of the underlying image. – mrtsherman Mar 2 '11 at 18:42
could wrap the image and the magnify in a div.whatever, and click event function could compensate for either by doing something like $(this).closest('div.whatever').find('img:first') – Detect Mar 2 '11 at 18:46
good suggestion. i think this would work, I ended up coming up with my own solution though. – mrtsherman Mar 2 '11 at 19:01
feedback
up vote 0 down vote accepted

So sorted this one out on my own. I can use jQuery's .live() which will automatically bind events when elements are added. So I just call in my (document).ready and every time a magnifying glass is added I can have it click the previous element (my image) for me.

jQuery(".magnify").live("click", function() {
     jQuery(this).prev().click();
});
link|improve this answer
I think you have a typo -- this will bind a click event to any <magnify> HTML tags, now or in the future. – yahelc Mar 2 '11 at 19:07
thanks yc. just pseudocode, but I added in a '.' just so that other SO'ers won't get confused. – mrtsherman Mar 2 '11 at 19:31
feedback

Your Answer

 
or
required, but never shown

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