In che senso ti si blocca lo script? con questo codice (stupido ) a me funzionava senza problemi
<html>
<head>
<script type="text/javascript" src="js/jquery-2.0.3.min.js"></script>
<script type="text/javascript">
function myfunc() {
var html = $("html").html();
$("#result").text(html);
}
</script>
</head>
<body>
<button id="copy" onclick="myfunc();" >Cliccami</button>
<p id="result"></p>
</body>
</html>
Comunque se hai già risolto..