How do I stop the flash of unstyled content (FOUC) on a web page?
You could try this with vanilla
function js_method(){ //todos var elementDiv = document.getElementById("main"); elementDiv.style.display ="block"; }
//todos Hello