Skip to main content

Bug Tracker

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?

Attachments (2)
  • itooltip.patch (1.2 KB) - added by razboinik July 04, 2007 06:34PM UTC.
  • tooltip.patch (0.1 KB) - added by razboinik July 04, 2007 06:34PM UTC.
Change History (2)

Changed July 04, 2007 03:24AM UTC by razboinik comment:1

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

Changed March 31, 2008 01:51AM UTC by scott.gonzal comment:2

resolution: → wontfix
status: newclosed

Interface is no longer supported; consider switching to jQuery UI.