Fading inline Rich HTML Tooltip

With this JavaScript code, annotations are embedded directly inside your webpage and will appear along with fading effects whenever users move mouse over the link. Fading inline Rich HTML Tooltip lets your tooltips appear immediately below links and you can use HTML tags for tooltips.


Sampled by JavaScriptBank.com

"RSS is a popular format for pushing updated headlines and contents from a site to viewers. JavaScript can be used to show RSS content on your site, whether by hosting the feed yourself as seen in RSS Ajax Ticker, or through Google Feeds API, explained in the article Displaying RSS feeds easily using Google Ajax Feed API."

RSS stands for Really Simple Syndication, and is a type of XML file format.
In this tutorial, see how to use JavaScript and PHP to create a live RSS ticker that taps into any RSS feed on the web.
In this tutorial, we show you how to use Google Ajax Feed API to display RSS feeds from other sites on your own easily and without hosting the files on your own server.

Documentation

From © JavaScript Kit

To add an inline HTML tooltip to any link on your page, just give the link a rel="htmltooltip" declaration, then define the tooltip DIV itself anywhere on the page with class="htmltooltip":

<a href="#" rel="htmltooltip">Some link</a>

<!-- Matching tooltip with class="htmltooltip" -->
<div class="htmltooltip">RSS stands for Really Simple Syndication, and is a type of XML file format.</div>

The tooltip DIV can be defined anywhere on the page, and not necessarily directly below the anchor link. So how does the script know which anchor the tooltip should belong to? It matches up the two based on the order in which they appear within the page's source, so the 4th tooltip DIV will be associated with the 4th anchor link on the page, wherever both may appear on the page.


Over 2000+ free Javascript
at JavaScriptBank.com Website