5 * simpleTooltip jQuery plugin, by Marius ILIE
6 * visit http://dev.mariusilie.net for details
10 (function($){ $.fn.simpletooltip = function(){
11 return this.each(function() {
12 var text = $(this).attr("title");
13 $(this).attr("title", "");
14 if(text != undefined) {
15 $(this).hover(function(e){
16 var tipX = e.pageX + 12;
17 var tipY = e.pageY + 12;
18 $(this).attr("title", "");
19 $("body").append("<div id='simpleTooltip' style='position: absolute; z-index: 100; display: none;'>" + text + "</div>");
20 if($.browser.msie) var tipWidth = $("#simpleTooltip").outerWidth(true)
21 else var tipWidth = $("#simpleTooltip").width()
22 $("#simpleTooltip").width(tipWidth);
23 $("#simpleTooltip").css("left", tipX).css("top", tipY).fadeIn("medium");
25 $("#simpleTooltip").remove();
26 $(this).attr("title", text);
28 $(this).mousemove(function(e){
29 var tipX = e.pageX + 12;
30 var tipY = e.pageY + 12;
31 var tipWidth = $("#simpleTooltip").outerWidth(true);
32 var tipHeight = $("#simpleTooltip").outerHeight(true);
33 if(tipX + tipWidth > $(window).scrollLeft() + $(window).width()) tipX = e.pageX - tipWidth;
34 if($(window).height()+$(window).scrollTop() < tipY + tipHeight) tipY = e.pageY - tipHeight;
35 $("#simpleTooltip").css("left", tipX).css("top", tipY).fadeIn("medium");
43 jQuery('.tooltipped').simpletooltip();