SensueTopic: Notification on last updated stories
If you have your own website or blog, and would love to post notifications on story updates, it's easy. First, use: http://www.dynamicdrive.com/dynamicindex18/gajaxrssdisplayer.htm to embed the RSS feed on your site. You will need to sign up for a google key. http://code.google.com/apis/ajaxfeeds/signup.html RSS Feed: http://www.fanfiction.net/atom/c2/57755/3/ ----------- More detail. Post this in between the head/head sections: script type="text/javascript" src="http://www.google.com/jsapi?key=YOUR-API-KEY" /script script type="text/javascript" src=".../gfeedfetcher.js" /*** * gAjax RSS Feeds Displayer- (c) Dynamic Drive (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for full source code ***/ /script script type="text/javascript" src=".../gajaxticker.js" /script THEN: In the body (where you want the feed to appear), paste this: script type="text/javascript" var socialfeed=new gfeedrssticker("bhau", "bhau_class", 3000, "_blank") socialfeed.addFeed("BrotherhoodAU", "http://www.fanfiction.net/atom/c2/57755/3/") //Specify "label" plus URL to RSS feed socialfeed.displayoptions("date") //show the specified additional fields socialfeed.setentrycontainer("div") //Display each entry as a DIV socialfeed.filterfeed(50, "date") //Show 15 entries, sort by label socialfeed.entries_per_page(10) socialfeed.init() //Always call this last /script |