I want to display a QTIP (http://craigsworks.com/projects/qtip/) after my mouseover is longer then 1 second on a link. how is this possible?
If im with the mouse over the element less then 1 second, nothing should happen. I have tried the below code, but my browser crashes:
$(".Details").bind("mouseover", function()
{
t= setTimeout($(this).qtip({ args... }), 1000); });
$(".Details").bind("mouseout", function() { clearTimeout(t);
});