no-js.js
//-- insert in the <head> before the content.
// There is no need to wait for the content to load, only the html tag. - This prevents flickering
function nojs() {
var html = document.querySelector('.no-js');
html.className = html.className.replace(/no-js/,'');
}
nojs();