I want to emit an '&' without the '&
' on the page
document.write('&');
emits &
document.write('\&');
emits &
Proof in the generated html
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<title></title>
</head><body>
<script type="text/javascript">
document.write('&');
document.write('\&');
</script><div firebugversion="1.5.4" style="display: none;" id="_firebugConsole"></div>&&
</body></html>