<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 <html>, 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 <head><br>
<br>
<span style="font-family: monospace;">
<script>(function(h){h.className = h.className.replace('no-js',
'js')})(document.documentElement)</script></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>