I don't know much about javascript. I'm trying to open the rss links in a new window...any advice?
Would i have to edit something in this portion of the javascript?
Thanks!Code:rssticker_ajax.prototype.initialize=function(){ if (this.ajaxobj.readyState == 4){ //if request of file completed if (this.ajaxobj.status==200){ //if request was successful var xmldata=this.ajaxobj.responseXML if(xmldata.getElementsByTagName("item").length==0){ //if no <item> elements found in returned content document.getElementById(this.tickerid).innerHTML="<b>Error</b> fetching remote RSS feed!<br />"+this.ajaxobj.responseText return } var instanceOfTicker=this this.feeditems=xmldata.getElementsByTagName("item") //Cycle through RSS XML object and store each peice of an item inside a corresponding array for (var i=0; i<this.feeditems.length; i++){ this.title[i]=this.feeditems[i].getElementsByTagName("title")[0].firstChild.nodeValue this.link[i]=this.feeditems[i].getElementsByTagName("link")[0].firstChild.nodeValue this.description[i]=this.feeditems[i].getElementsByTagName("description")[0].firstChild.nodeValue this.pubdate[i]=this.feeditems[i].getElementsByTagName("pubDate")[0].firstChild.nodeValue } document.getElementById(this.tickerid).onmouseover=function(){instanceOfTicker.mouseoverBol=1} document.getElementById(this.tickerid).onmouseout=function(){instanceOfTicker.mouseoverBol=0} this.rotatemsg() } } }



Reply With Quote

Bookmarks