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
I have a List of man Labels I want to "tooltipsy" , and each tooltip get its content via ajax-call.
In the .tooltipsy()-function an ajax-call is made on setup, even if I never need this tooltip.
Is there a way to ajax-load the tooltip-content just on demand?
The text was updated successfully, but these errors were encountered:
Also needing to dynamically change the tool tip on the fly, I added this code 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");
I have a List of man Labels I want to "tooltipsy" , and each tooltip get its content via ajax-call.
In the .tooltipsy()-function an ajax-call is made on setup, even if I never need this tooltip.
Is there a way to ajax-load the tooltip-content just on demand?
The text was updated successfully, but these errors were encountered: