[jQuery] Cluetip from a function?
Hi there,
Is it possible to load cluetip from a function, such as:
<script type="text/javascript">
function showtooltip(item){
$(item).cluetip(
{
});
}
</script>
The reason I ask is that sometimes you don't want to bind to all
elements if a user will only select 1 or 2 items, sometimes the
cluetip might not even get activated at all so it seems a waste of
resources binding cluetip on document.ready
Regards DotnetShadow