I'm trying to write an xkcd extension for chrome in javascript. To obtain the url to the latest image, I fetch the JSON from http://dynamic.xkcd.com/api-0/jsonp/comic/ and try to p
Solution 1:
var img = document.createElement("image");
should definitely be
var img = document.createElement("img");
Post a Comment for "Parsing Json And Show Image In Popop"