JSFiddle - React, Tailwind, and code Playground

by wirey00

HTML

<div id='pic'></div>

JavaScript

$.getJSON("http://en.wikipedia.org/w/api.php?action=mobileview&format=json&page=mumbai&redirect=no&sections=0&prop=text&sectionprop=toclevel%7Clevel%7Cline%7Cnumber%7Cindex%7Cfromtitle%7Canchor&callback=?", function(json) { 
        var wikitext = json.mobileview.sections[0].text;
        var img = $(wikitext).eq(4).find('img:first');
        $('#pic').append('<img src="' + img[0].src + '"/>');
    }
);