| You can make it easier for your visitors to subscribe | | | | you will need to add some code into your web |
| to your RSS feed. With a free and easy to install | | | | pages. You will need to do this for all of the pages |
| javascript function you can add the QuickSub feed | | | | that you wish to use QuickSub on. |
| button to your webpage in just a few minutes. Let | | | | Please 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 that | | | | First you need to copy some code to call the CSS |
| produces a list of RSS feed readers that you can use | | | | file. 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. You | | | | Then 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 RSS | | | | visibility:hidden; z-index:1000;" onMouseOut="return |
| reader and add this feed to it. You will need the | | | | timeqs();" 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 uses | | | | quickSub (c) Jason Brome --][/script] |
| SharpReader as their RSS reader then they would | | | | Then where you want to use QuickSub place this |
| click on the Sharpreader link and this would add your | | | | code 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 to | | | | onmouseover="return quicksub(this, ' link text here[ |
| download the javascript and CSS files from | | | | a] |
| QuickSubs site. The file is compressed so you will | | | | You just need to replace the path with the path to |
| need to unzip the file which will leave you with | | | | you RSS feed and enter you own link text. All is left |
| quicksub.css and quicksub.js as well as a sample html | | | | now 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. Now | | | | active. |