huh? apparently giving an element an id with a valid JavaScript variable name will bind that element to window by that id? so
<div id="helloWorld"></div>
<script>
helloWorld.innerText = "bwah";
</script>
works (sets the innertext of the helloWorld element to "bwah"). wild
