SyntaxFix
Write A Post
Hire A Developer
Questions
You can also use a media query with javascript.
const mq = window.matchMedia( "(min-width: 960px)" ); if (mq.matches) { alert("window width >= 960px"); } else { alert("window width < 960px"); }