Thursday, 23 February 2017

How to add or remove class on resize window

<script>
$(window).load(function() {
   
    var viewportWidth = $(window).width();
    if (viewportWidth < 480) {
            $(".cover-section").addClass("gallery-mobile");
    }
   
    $(window).resize(function () {
   
        if (viewportWidth < 480) {
            $(".cover-section").removeClass("gallery-mobile");
        }
    });
});
</script>

No comments:

Post a Comment