If you look in the documentation , there is a βinstallβ way to change the content:
$('.selector').qtip('option', 'content.text', 'new content');
Is this what you are looking for?
Update: after testing the api parameters, they do not seem to work properly, but I found another method - here is the demo - hover over the tip for 1 second to see its change.
// make sure you target a specific tip var qapi = $('#tip1').data('qtip'), newtip = 'new tooltip content' qapi.options.content.text = newtip; // update content stored in options qapi.elements.content.text(newtip); // update visible tooltip content qapi.redraw(); // redraw to adjust tooltip borders
source share