Sure, try the attached modified .js file, which adds an additional sort string of "random", such as:
Code:
<script type="text/javascript">
var cssfeed=new gfeedfetcher("example1", "example1class", "")
cssfeed.addFeed("CSS Drive", "http://www.cssdrive.com/index.php/news/rss_2.0/") //Specify "label" plus URL to RSS feed
cssfeed.displayoptions("date") //show the specified additional fields
cssfeed.setentrycontainer("li") //Display each entry as a list (li element)
cssfeed.filterfeed(10, "random") //Show 10 entries, sort by random
cssfeed.init() //Always call this last
</script>
Bookmarks