BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi,
I use the tooltip control on hover, I would like to have a delay of 1 second before the tooltip is shown on hover, I mean, I dont want to show the tooltip on hover but when I hover for 1 second at least, is there any option to achieve this?
Thank you very much,
J Santín
<code>
$(function (){
var timeoutID;
$("#link1").ejTooltip(
{
content: "ECMAScript (or ES) is a trademarked scripting-language specification standardized by Ecma International in ECMA-262 and ISO/IEC 16262.",
width : "30%",
beforeOpen: function(args){
var inst = $("#link1").ejTooltip("instance");
args.cancel =true;
timeoutID = setTimeout(function(){ inst.show(); }, 1000);
}
});
$("#link1").mouseout(function() {
clearTimeout(timeoutID);
});
});
</code> |