Jquery in Magento 2

 

Write Any Jquery code in magento always write inside this script syntax

require(['jquery'], function($){});


Jquear For Header Scroll

require(['jquery'], function($){
  "use strict";

    $(window).scroll(function() {
        if ($(this).scrollTop() > 1){
        $('header').addClass('sticky');
        }
        else{
        $('header').removeClass('sticky');
        }
    });
});

Comments