I have a body element on which I add a few classes. And I want to remove the no-javascript class from it, after it’s being read by the browser.
<body class="foo boo no-javascript bla">
<script type="javascript">
// remove no-javascript class here
</script>
Well, since extra spaces between don’t matter, I’d say:
You can test it out here.