WhateverOrigin Sample
HTML
<div id="siteLoader">
<i>Loading…</i>
</div>
JavaScript
// WhateverOrigin.org Sample
$.getJSON('http://whateverorigin.org/get?url=' + encodeURIComponent('http://google.com') + '&callback=?', function(data){
var html = ""+data.contents;
html = html.replace(new RegExp('(href|src)="/', 'g'), '$1="http://google.com/');
$("#siteLoader").html(html);
$("#siteLoader").find('.ds').find('input').first().val('here we go!');
});