Resposive
if (window.matchMedia('(max-width: 1200px)').matches) {
// functionality for screens smaller than 1200px
}$(window).resize(function() {
if (window.matchMedia('(max-width: 1200px)').matches) {
// functionality for screens smaller than 1200px
}
});Last updated