I'm attempting to set a media query for this script with no luck. Can anyone point me in the right direction? Basically, I would like the .style.width = 50%
to be 100%
on small screen sizes. :/
function openNav() {
document.getElementById("mySidenav").style.width = "50%";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}