Results 1 to 2 of 2

Thread: Can anyone help me

  1. #1
    Join Date
    Jul 2009
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Post Can anyone help me

    1) Script Title: gAjax RSS Feeds Displayer

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...sdisplayer.htm

    3) Describe problem: I have a blog mixtaka.com in blogger.com, according to this link - http://www.dynamicdrive.com/dynamici...sdisplayer.htm
    i can display a feed on my website by title ascending order. The link above display tells everything but i did not understand due lack of JS knowledge. can anyone tell me step by step process to do this

    4) my aim is to sort a posts of feed by there title name in ascending order. my feed is - http://www.mixtaka.com/feeds/posts/d...ax-results=999 ,

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    It's quite straightforward actually. Simply follow the steps described on the script page, and for the code of Step 2, you'll want to change it to something like:

    Code:
    <script type="text/javascript">
    
    var cssfeed=new gfeedfetcher("example1", "example1class", "")
    cssfeed.addFeed("CSS Drive", "http://www.mixtaka.com/feeds/posts/d...ax-results=999") //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, "title") //Show 10 entries, sort by title
    cssfeed.init() //Always call this last
    
    </script>
    DD Admin

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •