JSFiddle - React, Tailwind, and code Playground

by BinaryAcid

JavaScript

var response = '';
$.ajax({ type: "GET",   
         // url: "http://www.esvapi.org/v2/rest/passageQuery?key=IP&passage=John+1",
         url: "http://www.codecademy.com/",
         async: false,
         success : function(text)
         {
             response = text;
         }
});

document.write(response);