Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 966 Bytes

File metadata and controls

50 lines (38 loc) · 966 Bytes

TinyTip

Very small tooltip jQuery plugin, No CSS, TinyTip does not force any styling over your tooltips, you can style your tooltips as desired, it also allow you to display any content, texts, html and Dom elements inside your tooltips.

  • Very small code with zero magic
  • No CSS file
  • Tooltip any thing

Installation

You can install with bower:

$ bower install tinytip

Demo & Documentation

Please Check TinyTip web page

Quick Usage

Make sure to include jQuery before loadin swTooltip.js file

$('.element').tinytip({
    tooltip : 'Hello',
    position : 'bottom',
    animation : {
        top : -10
    },
    fix : {
        top: 10,
        left: -5
    },
    speed : 100,
    on : 'click',
    off: 'click',
    preventClose : true,
    onLoad : function(e){
        alert('tool tip box loaded');
    }
});

Free Plugin by sweefty.com

License

MIT