var entry = result.feed.entries[i];
var div = document.createElement("div");
somewhere in the output of
div.appendChild(document.createTextNode(entry.content));
there are several
<img src="http://ww...
is there a simple way just to get image url? Maybe something with .match?
here's the way i did it..