Hide a section of the page

Use .style.display = just make sure when you show it you are using ‘flex’ and not ‘inline’ if the element is a flex! Hide it: Show it To hide a section with id=pageheader” Display it again

Read More

Manipulating CSS

Example $("#Textbox1").css("width", "90%"); or document.getElementById("MyElement").className = "MyClass";    

Read More