Ben Althauser
Results
2
comments of
Ben Althauser
I just edited the opentip-jquery.js file, and have it allowing html elements Basically I am appending into a div wrapper to get it to work. It's not in coffeescript btw....
``` javascript var myOpentip = new Opentip(jQuery("#tooltipTrigger"), { showOn: 'click', hideOn: 'click', fixed: true }); myOpentip.setContent('test'); jQuery('#tooltipTrigger').click(function(e) { e.stopPropagation(); jQuery(document).click(function() { myOpentip.hide(); }); }); ```