<html><head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></head><body
 bgcolor="#FFFFFF" text="#000000">
This is my first post here, I hope I'm doing it correctly.<br>
  <br>
I want to add a "no-js" class to &lt;html&gt;, and then remove it 
immediately (and add "js") if the browser supports JavaScript. For this,
 I want to add the following as the first thing after &lt;head&gt;<br>
  <br>
  <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp; 
&lt;script&gt;(function(h){h.className = h.className.replace('no-js', 
'js')})(document.documentElement)&lt;/script&gt;</span><br>
  <br>
>From what I could understand from the Theme Review page in the Codex, 
this isn't allowed.<br>
  <br>
Can this be an exception?<br>
</body>
</html>