JSFiddle - React, Tailwind, and code Playground

HTML

<p id="status">Loading external content ...</p>
<a href="http://stackoverflow.com/questions/8186797" target="_top">Go somewhere else</a>

JavaScript

$(function(){
    $.post("/echo/html/", { html: "External content loaded.", delay: 10 }, function(html){
        $("#status").html(html);
    });
});