8 lines
No EOL
231 B
JavaScript
8 lines
No EOL
231 B
JavaScript
function openNav() {
|
|
document.getElementById("sidenav").style.width = "300px";
|
|
}
|
|
|
|
/* Set the width of the side navigation to 0 */
|
|
function closeNav() {
|
|
document.getElementById("sidenav").style.width = "0%";
|
|
} |