// <script type="text/javascript" src="http://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>
$("#content").html('');
$.ajax({
url: "https://jsrun.net/mind/XJBpp",
global: false,
type: "GET",
dataType: "jsonp",
jsonp: "jsoncallback",
async: false,
success: function (msg) {
console.log(msg)
$("#content").html(msg);
}
})