Skip to main content

Bug Tracker

Side navigation

#6058 closed bug (invalid)

Opened February 09, 2010 07:49AM UTC

Closed February 10, 2010 05:47AM UTC

Romoving attribute doesn't work in IE6

Reported by: yuliada Owned by:
Priority: Milestone: 1.4.2
Component: attributes Version: 1.4.1
Keywords: IE6 Cc:
Blocked by: Blocking:
Description

I'm trying to to implement a custom tooltip using jQuery as

in the fallowing example:

http://www.switchonthecode.com/tutorials/jquery-custom-tooltips.

However the browser's tooltip won't disappear in IE6 regadless the "$(this).removeAttr('title');" command.

a print screen is attached.

Is there another way in order to keep the browser's tooltips from working?

Thanks,

Yulia.

Attachments (1)
  • IE6-customTooltips.JPG (231.3 KB) - added by yuliada February 09, 2010 07:51AM UTC.

    Print screen of the example

Change History (1)

Changed February 10, 2010 05:47AM UTC by john comment:1

resolution: → invalid
status: newclosed

In this case the plugin is binding a hover event, you'll need to unbind those events in order to stop. Likely something like:

$(this).unbind("mouseenter mouseleave");

In the future a question like this should probably be brought up in the jQuery Forum.