[jQuery] Tooltip Plugin: How to change Tooltip text later
I found a Problem with the jQuery.Tooltip Plugin. I want to change the
tooltip text of an element LATER after calling .tooltip()
Trying to set $(.element).attr('title', 'New Tooltip text'); creates a
SECOND old style tooltip. Not what I want! Calling .tooltip() a second
time an the element creates the tooltip correct but leads to really
strange Scripting Runtime Errors!
Calling $('.element').attr('tooltipText','New Tooltip text'); solves
the problem for me.
But: This is not documented in any way! How about making this method
public?
Cheers
Stefan