11 lines
473 B
JavaScript
11 lines
473 B
JavaScript
/* Set the width of the sidebar to 250px and the left margin of the page content to 250px */
|
|
function openNav() {
|
|
document.getElementById("mySidebar").style.width = "250px";
|
|
document.getElementById("main").style.marginLeft = "250px";
|
|
}
|
|
|
|
/* Set the width of the sidebar to 0 and the left margin of the page content to 0 */
|
|
function closeNav() {
|
|
document.getElementById("mySidebar").style.width = "0";
|
|
document.getElementById("main").style.marginLeft = "0";
|
|
} |