View Single Post
Old Jul 14th, 2005, 11:45 AM   #3
glevine
Newbie
 
Join Date: Jun 2005
Posts: 22
Rep Power: 0 glevine is on a distinguished road
nevermind, it turned out to be pretty simple once i decided to look for other topics similar to mine, but not really exactly what i was looking for. if anyone is interested in how to do this, here is the code that goes in your javascript file:

var head = document.getElementsByTagName('head')[0];
var link = document.createElement('link');
link.rel = 'alternate';
link.type = 'application/rss+xml';
link.href = 'link/to/your/rss/feed';
link.title = 'title of your rss feed';
head.appendChild(link);
glevine is offline   Reply With Quote