Hi, Faraz

I don't use maps so can't answer you specifically - but try this (put
it in your general js file). It should make hover work for a range of
events.

// a more accessible "hover" function
jQuery.fn.extend({
     hover: function(fnOver, fnOut) {
          return this.bind('mouseenter mouseover focus',
fnOver).bind('mouseleave mouseout blur', fnOut);
     }
});

Cherry
http://jquery.cherryaustin.com

On Feb 21, 6:52 pm, fshuja <[EMAIL PROTECTED]> wrote:
> i am using jquery version 1.2.3.
> I was trying to attach hover on <area> inside <map>. but find that its
> working ok in FF but not in IE.
> when i try to set <area onmouseover=""> then it works for both IE n
> FF.
>
> is this the bug??
> If IE supports onmouseover event for <area> tag inside <map> tag then
> hover should work.
>
> thnx
> Faraz

Reply via email to