PennController for IBEX › Forums › Support › html pages not showing › Reply To: html pages not showing
November 2, 2021 at 1:10 pm
#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