[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-20 Thread Jörn Zaefferer
DaveG wrote: Just as an aside, the version of the tooltip library in the SVN repository (and the used as a download from your website) is 2.0 Alpha. This version does not work with your demo page. You might want to note that on the Tooltip pages. Thanks for the hint. I really need to make a

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-19 Thread DaveG
Just as an aside, the version of the tooltip library in the SVN repository (and the used as a download from your website) is 2.0 Alpha. This version does not work with your demo page. You might want to note that on the Tooltip pages. ~ ~ Dave DaveG wrote: I think my idea when asking f

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-19 Thread DaveG
I think my idea when asking for the data was if there is a link between elements and their tooltips that can be used to automate the association. You could have an object of key/value pairs, each key being the same as an ID or class on an element, and the value containing the value to displ

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-19 Thread Jörn Zaefferer
DaveG wrote: Jörn Zaefferer wrote: DaveG wrote: What I'd really like to do is maintain an array of tips, and selectors, and then iterate through that calling Tooltip. I can do that with the syntax above. No, that won't work. The bodyHandler is supposed to be a callback function that is ca

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-19 Thread DaveG
Jörn Zaefferer wrote: DaveG wrote: What I'd really like to do is maintain an array of tips, and selectors, and then iterate through that calling Tooltip. I can do that with the syntax above. No, that won't work. The bodyHandler is supposed to be a callback function that is called whenever a

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-18 Thread Jörn Zaefferer
DaveG wrote: What I'd really like to do is maintain an array of tips, and selectors, and then iterate through that calling Tooltip. I can do that with the syntax above. No, that won't work. The bodyHandler is supposed to be a callback function that is called whenever a tooltip is to be display

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-18 Thread DaveG
A global switch/method to turn tooltips on/off, or a method on the jQuery object you used to apply the tooltip? Either this: $.Tooltip.on(); $.Tooltip.off(); This would be better for me as I then don't have to track all the tips. I simply need a way to turn on/off all tips. Ok, I'll add tha

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-18 Thread Jörn Zaefferer
DaveG wrote: A global switch/method to turn tooltips on/off, or a method on the jQuery object you used to apply the tooltip? Either this: $.Tooltip.on(); $.Tooltip.off(); This would be better for me as I then don't have to track all the tips. I simply need a way to turn on/off all tips. Ok

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-17 Thread DaveG
A global switch/method to turn tooltips on/off, or a method on the jQuery object you used to apply the tooltip? Either this: $.Tooltip.on(); $.Tooltip.off(); This would be better for me as I then don't have to track all the tips. I simply need a way to turn on/off all tips. Or this: var ti

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-17 Thread Jörn Zaefferer
DaveG wrote: 1] I'd like to make a request to have a flag to turn off all tool-tips (http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/). The easiest way to do this might be to retain existing object events, and simply put a flag in the code to not process tip events. I think I've al