I have used a script I have found. Where it should do some thing when the mouse hovers over the element
$this.hover(
function () {
tip.html("<p>" + tTitle + "</p>");
setTip(tTop, tLeft);
setTimer();
},
function () {
stopTimer($this);
tip.hide();
}
);
But i want to execute it, without I have to hover the mouse over the element?
How can I do that?