I'm having a nightmare making a tooltip, after a couple of hours spent on reviewing my code and checking some plugin and I decided to ask for some help before I go crazy.
Basically my tooltip runs perfectly in all browsers with one exception; Safari. My problem is when I pass over any images, the browser starts blinking with white colour, I havent' found any solution but looks like my problem is the tooltip script.
I have an example:
JS
this.imagePreview = function()
{
var xOffset = 10;
var yOffset = 30;
$('#Images a').hover(function(e)
{
var tooltipName = $(this).attr('rel');
this.t = this.title;
this.title = "";
var c = (this.t != "") ? "<br/>" + this.t : "";
$("body").append("<p id='tooltip' class='imageToolTip'><img src='" + BASE + "/img/template/Images/tooltip" + tooltipName + ".png' />"+ c +"</p>");
$("#tooltip")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px")
.fadeIn("fast");
},
function(){
this.title = this.t;
$("#tooltip").remove();
});
$('#Images a').mousemove(function(e)
{
$("#tooltip")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px");
});
};
CSS
.imageToolTip {position: absolute; z-index: 9999; margin-left: -120px; margin-top: 27px;}
Many thanks for all your help.
stop()beforefadeIn? – Marian Theisen Oct 31 '11 at 13:07