I have the following code:
$( window ).resize(function() {
if (matchMedia('only screen and (min-width: 992px)').matches) {
$('#second').parallax();
$('.sketches-1').parallax();
$('#fifth').parallaxfifth();
}
else{
//...
}
});
I wish to remove the parallax function on mobile devices, but how can I achieve this?