Hi,
    I am having the same issue, the events that are not working in IE
are mouseenter and mouseleave (which are used to make the hover event)
i haven' t had the time to debug it, but using mouseover and mouseout
works for what i needed

Esteban



On Feb 22, 11:09 am, Jarrod <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have a small problem when using the hover effect in ie (6 and 7)
>
> When hover is applied to the area tag (hotspots in an image map) it
> doesn't seem to fire the events, but mouseover and mouseout do (which
> I ultimately used to solve the problem).
>
> so
>     area.hover( function() {alert("on")},function() {alert("off")});
>
> didn't work
>
> but
>     area.mouseover( function() {alert("on")});
>     area.mouseout( function() {alert("off")});
> did work.
>
> Any ideas?
>
> Thanks,
> Jarrod

Reply via email to