vote up 0 vote down star

I am using the jquery tooltip and here is the code for it

this.tooltip = function()
            {   
    	        var xOffset = -10;
    	        var yOffset = -175;		

                $("a.tooltip").hover(function(e)
                {											  
    	            this.t = this.title;
    	            this.title = "";
    	            var breakdownData = "";
                var header = "<b>This document contains:</b><br />";

                switch(this.id)
                {
                    case '_ctl0_MasterContentPlaceHolder_hpl_DownloadCCPS1':
                        breakdownData = "<div style='padding-left:30px;'><br /></div>";
                        break;
                    case '_ctl0_MasterContentPlaceHolder_hpl_DownloadCCPS2':
                        breakdownData = "<div style='padding-left:30px;'></div>";
                        break;
                    case '_ctl0_MasterContentPlaceHolder_hpl_DownloadCCPS3':
                        breakdownData = "<div style='padding-left:30px;'></div>";
                        break;
                    case '_ctl0_MasterContentPlaceHolder_hpl_DownloadCCPS4':
                        breakdownData = "<div style='padding-left:30px;'></div>";
                        break;
                }   

    	            $("body").append("<div id='tooltip' style='width:350px; padding-left:15px; font-size:11px;'>"+ header + breakdownData +"</div>");
    	            $("#tooltip")
    		            .css("top",(e.pageY - xOffset) + "px")
    		            .css("left",(e.pageX + yOffset) + "px")
    		            .fadeIn("fast");		
            },
                function()
                {
    	            this.title = this.t;		
    	            $("#tooltip").remove();
            }); 

                $("a.tooltip").mousemove(function(e)
                {
    	            $("#tooltip")
    		            .css("top",(e.pageY - xOffset) + "px")
    		            .css("left",(e.pageX + yOffset) + "px");
                });			
        };

        $(document).ready(setTimeout("tooltip()", 500));



#tooltip
    {
    	position:absolute;
    	border:1px solid #333;
    	background:#f7f5d1;
    	padding:2px 5px;
    	color:#333;
    	display:none;
    	width:350px;
    }

and then you just have to add the tooltip class to your anchor tag
Now this works fine in Firefox but it does not work in IE. Has anyone else experienced this?

Here is a link to the original which seems to work just fine http://cssglobe.com/lab/tooltip/01/

Thank You

flag

Is there any other code required, or additional libraries (besides jquery core). I'm trying to test it but can't get it to run properly at all (FF3) – Chris Serra Nov 11 '08 at 15:32
@Chris sorry I forgot the css class and I just added it into the question – jmein Nov 11 '08 at 15:36
What version of jQuery are you using? – Chris Serra Nov 11 '08 at 16:17
jquery-1.2.6.min.js – jmein Nov 11 '08 at 16:24

2 Answers

vote up 2 vote down check

I was able to test it fine in both FF3, IE6, and IE7. What problems are you experiencing?

I did receive one bug in Firebug however:

fn.call is not a function jquery-1.2.6.js Line 2295
    jQuery.readyList.push( function() { return fn.call(this, jQuery); } );

Which led me to change your $(document).ready function to:

$(document).ready(function(){
    setTimeout("tooltip()", 500)
});

Not sure if that will solve your problem, but give it a try.

link|flag
The tooltip is not even showing up, but just now I was looking at it on a co-workers computer and it seems that something is loading but nothing happens. His computer is a little slower than mine so we could notice that soemthing was happening but it doesnt seem to finish. – jmein Nov 11 '08 at 16:12
Oh yeah and I tried your change and it did not work – jmein Nov 11 '08 at 16:12
We think we know what is going wrong now. I hid some of the items on the page so that we could see if something displayed on the bottom because we noticed a flicker in the scollbar. It is displaying at the bottom of the page. I dont really understand why because the position is absolute – jmein Nov 11 '08 at 16:20
vote up 0 vote down

I found the problem:

I was using our older version of the jquery library. I switched it over to the new file and it works fine now.

I kept our older version because I was not sure how backward compatible jquery is. We have had some issues with mootools not being backward compatible. I am going to ask another question about this to see what people have to say.

Thanks for your help Chris you get +1

link|flag
You're welcome :) Glad to be of assistance – Chris Serra Nov 11 '08 at 16:47

Your Answer

Get an OpenID
or

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