2
* jQuery Tooltip plugin 1.2
4
* http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/
5
* http://docs.jquery.com/Plugins/Tooltip
7
* Copyright (c) 2006 - 2008 Jörn Zaefferer
9
* $Id: jquery.tooltip.js 4569 2008-01-31 19:36:35Z joern.zaefferer $
11
* Dual licensed under the MIT and GPL licenses:
12
* http://www.opensource.org/licenses/mit-license.php
13
* http://www.gnu.org/licenses/gpl.html
18
// the tooltip element
20
// the current tooltipped element
22
// the title of the current element, used for restoring
24
// timeout id for delayed tooltips
27
IE = $.browser.msie && /MSIE\s(5\.5|6\.)/.test(navigator.userAgent),
28
// flag for mouse tracking
42
$.tooltip.blocked = !$.tooltip.blocked;
47
tooltip: function(settings) {
48
settings = $.extend({}, $.tooltip.defaults, settings);
49
createHelper(settings);
50
return this.each(function() {
51
$.data(this, "tooltip-settings", settings);
52
// copy tooltip into its own expando and remove the title
53
this.tooltipText = this.title;
54
$(this).removeAttr("title");
55
// also remove alt attribute to prevent default tooltip in IE
61
fixPNG: IE ? function() {
62
return this.each(function () {
63
var image = $(this).css('backgroundImage');
64
if (image.match(/^url\(["']?(.*\.png)["']?\)$/i)) {
67
'backgroundImage': 'none',
68
'filter': "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='" + image + "')"
70
var position = $(this).css('position');
71
if (position != 'absolute' && position != 'relative')
72
$(this).css('position', 'relative');
76
} : function() { return this; },
77
unfixPNG: IE ? function() {
78
return this.each(function () {
79
$(this).css({'filter': '', backgroundImage: ''});
81
} : function() { return this; },
82
hideWhenEmpty: function() {
83
return this.each(function() {
84
$(this)[ $(this).html() ? "show" : "hide" ]();
88
return this.attr('href') || this.attr('src');
92
function createHelper(settings) {
93
// there can be only one tooltip helper
96
// create the helper, h3 for title, div for url
97
helper.parent = $('<div id="' + settings.id + '"><h6></h6><div class="body"></div><div class="url"></div></div>')
99
.appendTo(document.body)
103
// apply bgiframe if available
105
helper.parent.bgiframe();
107
// save references to title and url elements
108
helper.title = $('h6', helper.parent);
109
helper.body = $('div.body', helper.parent);
110
helper.url = $('div.url', helper.parent);
113
function settings(element) {
114
return $.data(element, "tooltip-settings");
117
// main event handler to start showing tooltips
118
function handle(event) {
119
// show helper, either with timeout or on instant
120
if( settings(this).delay )
121
tID = setTimeout(show, settings(this).delay);
125
// if selected, update the helper position when the mouse moves
126
track = !!settings(this).track;
127
$(document.body).bind('mousemove', update);
129
// update at least once
133
// save elements title before the tooltip is displayed
135
// if this is the current source, or it has no title (occurs with click event), stop
136
if ( $.tooltip.blocked || this == current || (!this.tooltipText && !settings(this).bodyHandler) )
141
title = this.tooltipText;
143
if ( settings(this).bodyHandler ) {
145
var bodyContent = settings(this).bodyHandler.call(this);
146
if (bodyContent.nodeType || bodyContent.jquery) {
147
helper.body.empty().append(bodyContent)
149
helper.body.html( bodyContent );
152
} else if ( settings(this).showBody ) {
153
var parts = title.split(settings(this).showBody);
154
helper.title.html(parts.shift()).show();
156
for(var i = 0, part; part = parts[i]; i++) {
158
helper.body.append("<br/>");
159
helper.body.append(part);
161
helper.body.hideWhenEmpty();
163
helper.title.html(title).show();
167
// if element has href or src, add and show it, otherwise hide it
168
if( settings(this).showURL && $(this).url() )
169
helper.url.html( $(this).url().replace('http://', '') ).show();
173
// add an optional class for this tip
174
helper.parent.addClass(settings(this).extraClass);
176
// fix PNG background for IE
177
if (settings(this).fixPNG )
178
helper.parent.fixPNG();
180
handle.apply(this, arguments);
183
// delete timeout and show helper
186
helper.parent.show();
191
* callback for mousemove
192
* updates the helper position
193
* removes itself when no current element
195
function update(event) {
196
if($.tooltip.blocked)
199
// stop updating when tracking is disabled and the tooltip is visible
200
if ( !track && helper.parent.is(":visible")) {
201
$(document.body).unbind('mousemove', update)
204
// if no current element is available, remove this listener
205
if( current == null ) {
206
$(document.body).unbind('mousemove', update);
210
// remove position helper classes
211
helper.parent.removeClass("viewport-right").removeClass("viewport-bottom");
213
var left = helper.parent[0].offsetLeft;
214
var top = helper.parent[0].offsetTop;
216
// position the helper 15 pixel to bottom right, starting from mouse position
217
left = event.pageX + settings(current).left;
218
top = event.pageY + settings(current).top;
226
h = helper.parent[0];
227
// check horizontal position
228
if(v.x + v.cx < h.offsetLeft + h.offsetWidth) {
229
left -= h.offsetWidth + 20 + settings(current).left;
230
helper.parent.css({left: left + 'px'}).addClass("viewport-right");
232
// check vertical position
233
if(v.y + v.cy < h.offsetTop + h.offsetHeight) {
234
top -= h.offsetHeight + 20 + settings(current).top;
235
helper.parent.css({top: top + 'px'}).addClass("viewport-bottom");
239
function viewport() {
241
x: $(window).scrollLeft(),
242
y: $(window).scrollTop(),
243
cx: $(window).width(),
244
cy: $(window).height()
248
// hide helper and restore added classes and the title
249
function hide(event) {
250
if($.tooltip.blocked)
252
// clear timeout if possible
255
// no more current element
258
helper.parent.hide().removeClass( settings(this).extraClass );
260
if( settings(this).fixPNG )
261
helper.parent.unfixPNG();
264
$.fn.Tooltip = $.fn.tooltip;