This is a spin off of this question: Why is the SO system message written in by javascript?
Why would they use document.write?
Current Code on page:
<div id="system-message-temp">
<script type="text/javascript">
var curSystemMessage = 'SOPA is a dangerous law. It breaks the Internet and threatens sites like Stack Overflow. <a href="http:\/\/americancensorship.org\/" rel="nofollow">Protect the Internet<\/a>!';
document.write(curSystemMessage); //WHAT? Why....?
$('#system-message-temp').attr('id', 'system-message');
</script>
</div>
Why didn't they totally drop that and use jQuery?
<div id="system-message-temp">
<script type="text/javascript">
var curSystemMessage = 'SOPA is a dangerous law. It breaks the Internet and threatens sites like Stack Overflow. <a href="http:\/\/americancensorship.org\/" rel="nofollow">Protect the Internet<\/a>!';
$('#system-message-temp').html(curSystemMessage).attr('id', 'system-message');
</script>
</div>

Why didn't they totally drop that and use jQuery?...and I who thought that memes where funny exaggerations... meta.stackoverflow.com/a/19492/163321 – Damien Pirsy Nov 29 '11 at 20:44