0
If you mean you want to popup the tooltip when hovering, but you also hope the tooltip will be gone when clicking the element, you can:
<span onmouseover="tooltip.pop(this, 'hi there')"
onclick="runClickEvent(this); tooltip.hide();">Hi there</span>