I am working on creating a responsive webpage that will show different navigation based on the viewport size. Currently, I have written this JavaScript code:
var shownav = document.getElementById('show-nav');
if (screen.width < "720"){
shownav.style.display = 'block';
}
However, this code is not functioning as expected. Could someone please assist me with troubleshooting?