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 already implemented that as a side effect of something else. I just need to expose the setting. What approach would you prefer? 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();
Or this:
var tips = $(...).Tooltip();
tips.on();
tips.off();
2]
Is there a way to send in the tool-tip text as a parameter rather than relying on the Title attribute? The reason I'd like to do this is to source all tip text in a central location.
The bodyHandler callback may already do what you need. I've also implemented an option to transform footnotes into tooltips, linked via anchors. A more specific example of the format you'd prefer would help a lot.

--
Jörn Zaefferer

http://bassistance.de

Reply via email to