StackOverflow Basic jQuery.get HTML Question
http://stackoverflow.com/questions/25158612/
HTML
<div id="content">content div</div>
JavaScript
var url = 'http://httpbin.org/html';
$(function() {
$.get(url, function(data) {
console.log(data);
$('#content').html(data);
});
});