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.