Using QuickSub To Make It Easier For Your Visitors To Subscribe To Your Feed

You can make it easier for your visitors to subscribeyou will need to add some code into your web
to your RSS feed. With a free and easy to installpages. You will need to do this for all of the pages
javascript function you can add the QuickSub feedthat you wish to use QuickSub on.
button to your webpage in just a few minutes. LetPlease note that in these examples I have used
me show you just how easy it is.square brackets instead of angled brackets.
QuickSub is a javascript mouseover function thatFirst you need to copy some code to call the CSS
produces a list of RSS feed readers that you can usefile. Add this line with your head tags.
to subscribe to your RSS news feed with one click.[style type="text/css"] @import "quicksub.css"; [
You can see it in action on my RSS resource site,style]
just move the mouse over the subscribe link. YouThen copy this code into the body of your page.
should see a list of RSS feed readers. If you click on[div id="quickSub" style="position:absolute;
one of the news reader links it will open up that RSSvisibility:hidden; z-index:1000;" onMouseOut="return
reader and add this feed to it. You will need thetimeqs();" onMouseMove="return delayqs();"][/div]
particular news reader installed on your computer for[script language="JavaScript" src="quicksub.js"][!--
this to work. So for example if your visitor usesquickSub (c) Jason Brome --][/script]
SharpReader as their RSS reader then they wouldThen where you want to use QuickSub place this
click on the Sharpreader link and this would add yourcode in the body of your page.
feed to your visitors RSS reader.[a href=" onmouseout="return timeqs();"
To use QuickSub on your site you will first need toonmouseover="return quicksub(this, ' link text here[
download the javascript and CSS files froma]
QuickSubs site. The file is compressed so you willYou just need to replace the path with the path to
need to unzip the file which will leave you withyou RSS feed and enter you own link text. All is left
quicksub.css and quicksub.js as well as a sample htmlnow is to upload your modified page to your web
file.server and the new QuickSub javascript will be
Upload the CSS as javascript file to your server. Nowactive.