WhateverOrigin Sample

by David Underwood

HTML

<div id="siteLoader">
    <i>Loading&hellip;</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!');
});