0
How To Enable Disable Divs?
Im Tryna Make a website On here so before i upload it its perfect but u cant have more than 1 html document so i wanted to enable and disable divs but idk how pls help
2 odpowiedzi
+ 2
You can use Javascript to change the CSS display property.
+ 2
yes, create two classes
.show { display: block; }
.hide { display: none; }
and add or remove them from the element's classList with javascript...



