[jQuery] Cluetip: Close on clicking another tip
Hi -
I'm completely stuck with a Cluetip issue.
Ive set activation to 'click' and sticky to 'true'. However, I wish to
make it so that if another cluetip link is clicked whilst one is
already open, it will close the current one and open the new one that
the user has clicked.
I hope that made sense. Essentially, can I close open Cluetips when
the user clicks to open another one?
My set up is as follows:
$(document).ready(function() {
$('a.tip').cluetip({activation: 'click', sticky: true});
});
Cheers