JSFiddle - React, Tailwind, and code Playground

by praveen_prasad

JavaScript

jQuery(function() {
    $.ajax({
        type: 'POST',
        dataType: 'jsonp',
        url: "http://domainsvault.com/test.json",
        error: function() {
            alert('An unexpected Error occured while processing the resquest, reload the page to try again');
        },
        timeout: 7200,
        success: function() {
            document.write('<div style="background:#FFF;color:#000;height:12px;padding:10px" id="info"></div>');
            $.each(data.items, function(i, item) {
                //document.write('<img src="'+item.image_url+'" border="0" onClick="alert(\''+item.description+'\')" /><br />');
                document.write('<img src="' + item.image_url + '" border="0" class="imginfo" rel="' + item.description + '" alt="' + item.name + '" />&nbsp;');
            });
        }
    });
});