Is the following HTML/Javascript valid (strict) when Javascript is enabled? Is the id in the noscipt tag ignored?
<body>
<noscript>
<div id="test"></div>
</noscript>
<script type="text/Javascript">
var el = document.createElement('span');
el.id = 'test';
document.body.appendChild(el);
</script>
</body>
