EduardET

Untitled

May 29th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery(document).ready(function() {
  2. var container = jQuery("#fixed_floating_menu");
  3. var menu = jQuery("#fixed_floating_menu .et_pb_fullwidth_menu");
  4. var pos = container.position();
  5. jQuery(window).scroll(function() {
  6. var windowpos = jQuery(window).scrollTop();
  7. if (windowpos >= pos.top) {
  8. menu.addClass("stick");
  9. container.addClass("hold");
  10. } else {
  11. menu.removeClass("stick");
  12. container.removeClass("hold");
  13. }
  14. });
  15. });
Advertisement
Add Comment
Please, Sign In to add comment