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.
- Host: GitHub
- URL: https://github.com/gilbitron/tiptop
- Owner: gilbitron
- License: mit
- Created: 2013-10-31T15:06:00.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-05-04T09:36:41.000Z (about 7 years ago)
- Last Synced: 2025-04-13T01:12:54.389Z (28 days ago)
- Language: JavaScript
- Homepage: http://gilbitron.github.io/TipTop
- Size: 10.7 KB
- Stars: 12
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.