You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Needing to dynamically change the tool tip on the fly, I added this to my version, just above the "show" function:
resetTooltip: function(t) {
this.title = t;
if (this.$tipsy) {
this.$tipsy.remove();
}
this.ready = false;
},
Call it this way:
$('#objId').data('tooltipsy').resetTitle("new tooltip text");
The text was updated successfully, but these errors were encountered:
Needing to dynamically change the tool tip on the fly, I added this to my version, just above the "show" function:
resetTooltip: function(t) {
this.title = t;
if (this.$tipsy) {
this.$tipsy.remove();
}
this.ready = false;
},
Call it this way:
$('#objId').data('tooltipsy').resetTitle("new tooltip text");
The text was updated successfully, but these errors were encountered: