[jQuery] Re: Image + map area + mouseout event

2007-10-29 Thread Nordelius
I've the same problem.. ;(

[jQuery] Re: Image + map area + mouseout event

2007-09-21 Thread Fabien Meghazi
Ok, here's a test case of my problem. If anyone has an idea about how to fix it ? http://amigrave.com/upload/posts/jquery/mouseover_and_map_area.htm I considered hoverIntent but it won't be an option for me. An ugly fix would be to detect if mouse position is not over the image before firing do

[jQuery] Re: Image + map area + mouseout event

2007-09-20 Thread Fabien Meghazi
> Maybe you can bind a mouseover event to the map areas, that would do nothing > but return false. This may keep the mouseout from firing when you mouseover > an area -- Alreadt tried it too :( I'll try to put a test case online -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL

[jQuery] Re: Image + map area + mouseout event

2007-09-20 Thread Josh Nathanson
Maybe you can bind a mouseover event to the map areas, that would do nothing but return false. This may keep the mouseout from firing when you mouseover an area -- $("area").mouseover(function() { return false; }); - Original Message - From: "Fabien Meghazi" <[EMAIL PROTECTED]

[jQuery] Re: Image + map area + mouseout event

2007-09-20 Thread Fabien Meghazi
> Try adding "return false;" - Already tried too -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Image + map area + mouseout event

2007-09-20 Thread Josh Nathanson
Try adding "return false;" - $("#myimage").bind("mouseout", function() { console.log("Hello") doStuff(); return false; }); -- Josh - Original Message - From: "Fabien Meghazi" <[EMAIL PROTECTED]> To: "ML:jQuery" Sent: Thursday, September 20, 2007 3:13 PM Subject: [jQuery] Image + map