/*-----------------------------------------------------------------------------------------------*/ /* SIMPLE jQUERY TOOLTIP */ /* VERSION: 1.1 */ /* AUTHOR: jon cazier */ /* EMAIL: jon@3nhanced.com */ /* WEBSITE: 3nhanced.com */ /*-----------------------------------------------------------------------------------------------*/ $(document).ready(function() { $('.toolTip').hover( function() { this.tip = this.title; $(this).append( '
' +this.tip +'
' ); this.title = ""; this.width = $(this).width(); $('.toolTipWrapper').show(); }, function() { $('.toolTipWrapper').hide(); $(this).children().remove(".toolTipWrapper"); this.title = this.tip; } ); });