Submit your widget

jQuery Mouse Tracking Tooltips plugin

Created 11 years ago   Views 16040   downloads 3194    Author calebjacob
jQuery Mouse Tracking Tooltips plugin
View DemoDownload
43
Share |

Tooltipster is a lightweight jQuery plugin that enables you to easily create clean, HTML5 validated tooltips.

  • Supports HTML tags inside the tooltip
  • Lightweight and degradable
  • Extremely flexible & fast to set up
  • Easily styled with 100% CSS - no images needed
  • Plays nicely with IE

1. Load jQuery and include Tooltipster's plugin files

After you download Tooltipster, move tooltipster.css and jquery.tooltipster.min.js to your root's CSS and JavaScript directories. Next, load jQuery and include Tooltipster's CSS and JavaScript files inside of your <head> tags:

<head>
...

    <link rel="stylesheet" type="text/css" href="css/tooltipster.css" />

    <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
    <script type="text/javascript" src="js/jquery.tooltipster.min.js"></script>

...
</head>

2. Set up your HTML

In order for Tooltipster to work, we first need to add the .tooltip class (or whatever class you'd like to use) to whatever element we wish to have a tooltip. Next, we'll set the title attribute to whatever we'd like our tooltip to say. Here are a few examples:

Adding a tooltip to an image:

<img src="my-image.png" class="tooltip" title="This is my image's tooltip message!" />

Adding a tooltip to a link that already has a class:

<a href="#" class="ketchup tooltip" title="This is my link's tooltip message!">Link</a>

Adding a tooltip to a div:

<div class="tooltip" title="This is my div's tooltip message!"> 
    <p>This div has a tooltip when you hover over it!</p>
</div>

3. Activate Tooltipster

The last thing we have to do is activate the plugin. To do this, add the following script right before your closing </head> tag (if you went with a class other than .tooltip, make sure to substitute your class here):

<head>

...

    <script>
        $(document).ready(function() {
            $('.tooltip').tooltipster();
        });
    </script>
</head>

Read more:http://calebjacob.com/tooltipster/