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