Side navigation
#1336 closed bug (wontfix)
Opened June 30, 2007 02:45AM UTC
Closed March 31, 2008 01:51AM UTC
click doesn't hide tooltip
Reported by: | razboinik | Owned by: | stefan |
---|---|---|---|
Priority: | major | Milestone: | 1.2 |
Component: | interface | Version: | 1.1.2 |
Keywords: | iTooltip, tooltip, interface tooltip | Cc: | |
Blocked by: | Blocking: |
Description
Hello, this is my first post
today I started using jquery with interface elements for my project, and noticed there were some problems with the tooltips, I use Firefox.
Whenever I click a link with a tooltip or open link in a new tab , the tooltip will follow the cursor.
I could fix the first problem (when clicking a link inside the page) with this line in show():
jEl.bind('mouseout',jQuery.iTooltip.hide) .bind('click',jQuery.iTooltip.hidefocused)
.bind('blur',jQuery.iTooltip.hidefocused);
and in hide() :
jQuery(el)
.attr('title',jQuery.iTooltip.oldTitle)
.unbind('mouseout', jQuery.iTooltip.hide)
.unbind('click', jQuery.iTooltip.hidefocused)
.unbind('blur', jQuery.iTooltip.hidefocused);
but the open click new tab couldn't fix it.
Also from time to time the tooltip tends to remain open regardless the pointer position, just clicking anywhere will release it. but is pretty annoying.
Anyone having similar issues?
Another thing, the original element has a onmouseover
function which changes the self.status, but the plugin disables it
'cause it binds its own function, i was wondering how could i change
the self.status within' iToolTip.show()
Or put it this way how can i tell jquery to change the self.status
text