Load stuff conditionally (~ JS mediaquerries) for mobiles/desktops. More: https://varvy.com/mobile/conditional-javascript.html & https://www.christianheilmann.com/2012/12/19/conditional-loading-of-resources-with-mediaqueries/
if (window.matchMedia("(min-width: 900px)").matches) {
// do stuff for 900+ px screens
}