Reputation: 4212
I can display several feeds from different providers using feedburner like this JsFiddle
I would like to place the latest feed on top. How would I know which feed is the 'newest'?? And how do I get to place it on top? (I would like to do this with Jquery if that is possible)
Upvotes: 1
Views: 54
Reputation: 6685
Try using jQuery prepend()
on the parent element. This will allow you to place the new feeds at the top.
http://api.jquery.com/prepend/
Upvotes: 0