Oh my gosh! The author has displayed itself! Thanks! But can I be a bit more greedy and ask for a little more request? 
Right now the feeds are displaying as this,
Code:
10th test haha Friday, January 27, 2012 6:45:16 PM
hi
Author: Admin
No modification is done to the js at all. However, since I am only good at HTML, I can't do this part on my own.
What I would like is for the feeds to display in this manner,
Code:
10th test haha
Friday, January 27, 2012 6:45:16 PM by Admin
hi
How will it be possible?
Do we have to go to the js to accomplish this?
======
Edit: Alright, after looking through the JS and doing many trials and errors, I finally get it. To get the output I want, I simply just look at the RSSOUTPUT line!
This is my final code that fulfill the criteria of what I want,
Code:
gfeedfetcher.prototype._displayresult=function(feeds){
var rssoutput=(this.itemcontainer=="<li>")? "<ul>\n" : ""
gfeedfetcher._sortarray(feeds, this.sortstring)
for (var i=0; i<feeds.length; i++){
var itemtitle="<a href=\"" + feeds[i].link + "\" target=\"" + this.linktarget + "\" class=\"titlefield\">" + feeds[i].title + "</a>" + "<br />"
var itemlabel=/label/i.test(this.showoptions)? '<span class="labelfield">['+this.feeds[i].ddlabel+']</span>' : " "
var itemdate=gfeedfetcher._formatdate(feeds[i].publishedDate, this.showoptions)
var itemdescription=/description/i.test(this.showoptions)? "<br />"+feeds[i].content : /snippet/i.test(this.showoptions)? "<br />"+feeds[i].contentSnippet : ""
var itemauthor = /author/i.test(this.showoptions)? "<span class='authorfield'> by "+(feeds[i].author || feeds[i].copyright || feeds.author || feeds.copyright || 'unavailable')+ "</span>": '';
rssoutput+=this.itemcontainer + itemtitle + " " + itemlabel + " " + itemdate + "" + itemauthor + "\n" + itemdescription + this.itemcontainer.replace("<", "</") + "\n\n"
}
rssoutput+=(this.itemcontainer=="<li>")? "</ul>" : ""
this.feedcontainer.innerHTML=rssoutput
}
It will be good if you inspect those in red and see if there are any problems with it. I tested it and it worked perfectly.
Additionally, I have a suggestion is to put this "Author" id somewhere inside the gAjax RSS Feeds Displayer page since I believe there are people out there like me who would love to display the author of the RSS feeds.
Thanks alot!
Bookmarks