How to show rss feeds with image using javascript/jquery?

You should be able to fetch RSS using simple jQuery ajax call. Something like.

You should be able to fetch RSS using simple jQuery ajax call. Something like $. Ajax({ accept: 'application/rss+xml', url: 'rss.cnn.com/fortunebrainstormtech', success: function(){} }); Using the URL above, I can see that images are return as HTML (escaped ofcourse) tags.

You just need to unescape them and embed them in your html. To unescampe simple using the javascript unescape function. Use Firefox addon called REST Client with the above URL.

Add a request header Name=Accept, Value=application/rssxml to see the returned data yourself.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions