I am using the jQuery UI tool for tooltips and I've found a peculiar bug that I can't duplicate (to show you) or get rid of. Usually, this tool will use the title="whatever"
part of a tag to give you a fancy css version of a hover tag. This is working, but it is also picking up the title of my page <head><title>My Page</title></head>
and display it in the bottom left corner. Also, it's never the same tooltip number either, otherwise I could just ignore that instance. Example #ui-tooltip-0
. I need to prevent tooltip from collecting my title tag. Any ideas? Thanks in advance.
Asked
Active
Viewed 1,160 times
0

triplethreat77
- 1,276
- 8
- 34
- 69
-
Can you show me code so i can check? – softsdev Jan 30 '13 at 19:27
-
1Can you add the code that you use to initialize the UI Tooltip? Maybe you're using the wrong settings and/or selector – thaJeztah Jan 30 '13 at 19:27
-
$(document).tooltip(); It's the most basic call. – triplethreat77 Jan 30 '13 at 19:31
-
@triplethreat77, unique `ui-tooltip-*` ids are by design, but the widget definitely should not match your `
` element. Could it be that your `` element also exposes a `title` *attribute*? – Frédéric Hamidi Jan 30 '13 at 19:33 -
nothing in the title tag, just placed as above. How can I write an exception for that one tag? – triplethreat77 Jan 30 '13 at 19:41
-
use something like :not(title) in the selector – Hontoni Feb 22 '13 at 10:58