Skip to content

Instantly share code, notes, and snippets.

@mbjordan
mbjordan / jQuery.mintip.js
Created January 12, 2012 03:03 — forked from FND/jQuery.mintip.js
jQuery MinTip: minimal tooltips
/*jslint vars: true, unparam: true, browser: true, white: true */
/*global jQuery */
(function ($) {
"use strict";
var onEnter, onLeave, startTimer, stopTimer, remove, getPos;
var defaults = {
delay: 500,
content: null,
allowHTML: false // XXX: rename
};