Advertisement
Guest User

Untitled

a guest
Jan 15th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.45 KB | None | 0 0
  1. jQuery(document).ready(function($) {
  2.   $(window).scroll(function() {
  3.     var scroll = $(window).scrollTop();
  4.     if (scroll >= 0) {
  5.       if ($(window).width() > 960) {
  6.         $(".sticky-header-product").removeClass("d-none");
  7.         $(".sticky-header-product").addClass("fixed-top");
  8.       }} else {{
  9.         $(".sticky-header-product").removeClass("fixed-top");
  10.         $(".sticky-header-product").addClass("d-none");
  11.       }
  12.     }
  13.   });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement