It seems that the entire destroy function is deleting the event trigger (lines 28-30)
if (js == 'destroy') {
return this.unbind('.cluetip');
}
If you want the data in cluetip not to disappear, clear it first:
$('#cluetip-inner').empty();
Update. To answer the question of whether there is an element associated with it, I will give you something that I found from James Padolsey's website :
console.dir( jQuery('#elem').data('events') );
jQuery.each($('#elem').data('events'), function(i, event){
jQuery.each(event, function(i, handler){
console.log( handler.toString() );
});
});
* Note: consolerefers to the Firebug console.
source
share