get media size js code example
Example 1: if media query jquery
$(window).resize(function() {
if ($(this).width() < 1024) {
// your code
} else {
// your code
}
});
Example 2: device width js
window.screen.availWidth
$(window).resize(function() {
if ($(this).width() < 1024) {
// your code
} else {
// your code
}
});
window.screen.availWidth