jQuery - Execute scripts based on screen size

$(window).resize(function () {
            if ($(this).width() < '500') {
                alert("mobile");
            }
            else {
                alert("desktop");
            }
        });

Comments

Popular posts from this blog

My Interview Experience

React Checkbox Control SPFx