JosiahMaybe
Bronze Coder
Hello, trying to have a page entirely hidden, but then show specific elements by ID.
Would this part work in all browsers?
I have tested in Microsoft Edge on a computer.
I know that works for a browser for hiding everything on a page on any page in Microsoft Edge on a computer.
Like my only question about it is if it runs on everything with an internet browser.
If it does not, what can?
Also I tested in Google Chrome on a computer too.
X E.
Would this part work in all browsers?
I have tested in Microsoft Edge on a computer.
JavaScript:
let count = 0;
while (count != document.body.children.length) {
document.body.children[count].hidden=true;
count++;
}
//X E
Like my only question about it is if it runs on everything with an internet browser.
If it does not, what can?
Also I tested in Google Chrome on a computer too.
X E.
Last edited: