GitXplorerGitXplorer
r

tipsy.hovercard

public
33 stars
3 forks
1 issues

Commits

List of commits on branch master.
Unverified
2ad05214052ae2579e84425c2a00d873222e5657

Update README with link to github.io

rrrrene committed 11 years ago
Unverified
f51039af7bd46ff219f73235e722469b3f112f1d

Add bower.json

rrrrene committed 11 years ago
Unverified
62c6d1dc085ea58353d0429f52cfe2b01c7f25cb

Bump version

rrrrene committed 12 years ago
Unverified
64ec92160b4a2103fe67f2db0819eaf9c67cfae7

Update tipsy.hovercard to work with current tipsy and jquery; support delayIn and delayOut options

rrrrene committed 12 years ago
Unverified
3e6b41f0a595fca16de48e0572e406090c1a7eba

Update sample/ files to reproduce bug

rrrrene committed 12 years ago
Unverified
59456cca834156251135a5dde2aa220cf1cc860c

Force some tipsy options which can break tipsyHoverCard

rrrrene committed 13 years ago

README

The README file for this repository.

tipsy.hovercard - twitter style hovercards for tipsy

DESCRIPTION

tipsy.hovercard provides twitter-like hovercards for tipsy, the facebook-styled tooltip plugin for jQuery.

Examples: http://rrrene.github.io/tipsy.hovercard/

SOURCE:

Hosted at GitHub; browse at:

http://github.com/rrrene/tipsy.hovercard

DEPENDENCIES:

jQuery: http://jquery.com/

tipsy: http://onehackoranother.com/projects/jquery/tipsy

USAGE:

Copy the contents of lib to your javascripts folder and include them in your <head> section. Be sure to provide jQuery >= 1.4 and the tipsy plugin as well.

You can then use it like this:

<a href="some.html" rel="tipsy" title="tipsy tooltip">example link</a>
<a href="some.html" rel="hovercard" title="A tipsyHoverCard<br>(you can hover)">Hovercard example</a>
<a href="some.html" rel="hovercard" title="loading..." data-url="some_info.html">Hovercard w/ AJAX Flavour</a>

<script>
  jQuery(function ($) {
    $("*[rel=tipsy]").tipsy();
    $("*[rel=hovercard]").tipsyHoverCard();
  });
</script>