JSFiddle - React, Tailwind, and code Playground
by CBroe
HTML
<noscript>
<style>
html { background: red; }
</style>
</noscript>
foox
JavaScript
var n = document.querySelector('noscript'),
b = document.body;
n.before(n.firstChild)
by CBroe
<noscript>
<style>
html { background: red; }
</style>
</noscript>
foox
var n = document.querySelector('noscript'),
b = document.body;
n.before(n.firstChild)