/*Iniciação - Script*/ this.tooltip = function(){ xOffset = 10; yOffset = 20; jQuery(".b-painel,.btnopen,.sortable th,.cursoativo,.ilink").hover(function(e){ if ( this.title=='' || this.title=='undefined' ){ return false; } this.t = this.title; this.title = ""; jQuery("body").append("
"+ this.t +"
"); jQuery("#tooltip") .css("top",(e.pageY - xOffset) + "px") .css("left",(e.pageX + yOffset) + "px") .fadeIn("fast"); }, function(){ this.title = this.t; jQuery("#tooltip").remove(); }); jQuery(".b-painel,.btnopen,.sortable th,.cursoativo,.ilink").mousemove(function(e){ if ( this.title=='' || this.title=='undefined' ){ return false; } jQuery("#tooltip") .css("top",(e.pageY - xOffset) + "px") .css("left",(e.pageX + yOffset) + "px"); }); }; jQuery(document).ready(function(){ tooltip(); });