|
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);
|