Opened 13 years ago
Closed 13 years ago
#6058 closed bug (invalid)
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)
Change History (2)
Changed 13 years ago by
Attachment: | IE6-customTooltips.JPG added |
---|
comment:1 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
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.
Note: See
TracTickets for help on using
tickets.
Print screen of the example