Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
just a quick thought, because it often solves such issues: have you tried calling stop() before fadeIn? – Marian Theisen Oct 31 '11 at 13:07
nevermind, just realized that you create the tooltip dom element just a few lines before fading in. – Marian Theisen Oct 31 '11 at 13:16
I have but didnt work. also when i left 2 remove just blink once, that very weird. Cheers – ron Oct 31 '11 at 13:18
twitter's bootstrap css/js framework implements different form of tooltips, which work perfectly in all browsers, maybe take a peak at their code to get some ideas to improve yours? http://twitter.github.com/bootstrap/javascript.html#twipsy – Marian Theisen Oct 31 '11 at 13:30
I'll have a look it thanks Marian. – ron Oct 31 '11 at 18:10
show 1 more comment

1 Answer

I have used this code in the past for jquery tooltips.

I made a few changes, like adding alt attributes and access them with jQuery instead of using the JS array.

Either way, try it in Safari, if it works it could be a worthy alternative.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.