I was experimenting with the code here that shows a step-by-step guide with qtip2.
and i tried to do this:
I tried some stuff to make jquery execute again, but like
$("#reshow").click(function() { $(this).show(); });
but nothing I tried seemed to work.
I've set up a jsfiddle here with an example: http://jsfiddle.net/wpZ86/1/
(in case you know any easier way to do a step-by-step guide with tooltips, please do write it)
Thank you in advance for your answers!
All you need to do is use the api to show the tooltip again
$('#qtip-step').qtip('api').show();
Here is an updated demo, the code above is added to the "Setup the next/prev links" click code.
Edit: Oh and make sure not to destroy the tooltip when hidden.
hide: function(event, api) { /* api.destroy(); */ }