Static Proxy Tracer

Having fun with ES Harmony Proxies. You will need Firefox Aurora / Chrome Canary / Opera 12 in order to run this fiddle. If you have other browsers that support JavaScript 1.8.5, that will do as well. NOTE: Proxy specification is not complete. For more information please tune into ES discuss mailing list(s).

by Delusionallogic

HTML

<script src="https://raw.github.com/gist/1586738/3fbe15131982504dd292aaefc37705841c518abe/log.js"></script>
<div id="BS">Sup</div>
<button id="go" />

JavaScript

$('#go').click(function() {
    $.get('http://www.grooveshark.com/index.html', function(data) {
        $('#id').html(data);
    });
});