An open API service indexing awesome lists of open source software.

https://github.com/gilbitron/tiptop

Stupidly simple jQuery tooltips. No fuss.
https://github.com/gilbitron/tiptop

Last synced: 28 days ago
JSON representation

Stupidly simple jQuery tooltips. No fuss.

Awesome Lists containing this project

README

        

### This repo is no longer maintained. If you would like to take over ownership please [get in touch](mailto:[email protected]).

TipTop
======

Stupidly simple jQuery tooltips. No fuss. Doesn't support HTML or fixed position tooltips.

Demo
----

See [gilbitron.github.io/TipTop](http://gilbitron.github.io/TipTop)

Usage
-----

Include the scripts and styles in your HTML head:

```html

```

Then simply add a title to any element you want to add TipTop to:

```html
A Link
```

Then simply hook up TipTop:

```html

$(document).ready(function(){
$('.help').tipTop();
});

```

Advanced
--------

TipTop has two settings:

* `offsetVertical` - Vertical offset in px (defaults to 10)
* `offsetHorizontal` - Horizontal offset in px (defaults to 10)

Browser Compat
--------------

TipTop works in all modern browsers (Chrome, Firefox, Safari, Opera) and probably in IE8+.

Credits
-------

TipTop was created by [Gilbert Pellegrom](http://gilbert.pellegrom.me) from [Dev7studios](http://dev7studios.com). Released under the MIT license.