Reply To: html pages not showing

PennController for IBEX Forums Support html pages not showing Reply To: html pages not showing

#7464
Jeremy
Keymaster

Hi,

Add these two lines just after your SCRIPT tag:

const hideEm = ()=>{ 
if (document.getElementById("numlang")===null) return window.requestAnimationFrame(hideEm);

and these two just before function getVal(){:

};
hideEm();

This will make sure that the hiding commands will only be run after the elements were added to the page

Jeremy