I'm certain this has been answered before (use the "search" function), though to summarize again, you can customize the output of each feed by locating the following code inside the .js file:
Code:
var linktitle='<div class="rsstitle"><a href="'+this.link[this.pointer]+'">'+this.title[this.pointer]+'</a></div>'
var description='<div class="rssdescription">'+this.description[this.pointer]+'</div>'
var feeddate='<div class="rssdate">'+this.pubdate[this.pointer]+'</div>'
So in your case, you would change:
Code:
var linktitle='<div class="rsstitle"><a href="'+this.link[this.pointer]+'" target="_new" >'+this.title[this.pointer]+'</a></div>'
Bookmarks