With jquery you can associate a hover function to also set the title attribute in onmouseover and then reset on the mouse from.
$("element#id").hover(
function() {
$(this).attr("title","");
$("div#popout").show();
},
function() {
$("div#popout").hide();
$(this).attr("title",originalTitle);
}
);
source
share