• Resolved smorodina13

    (@smorodina13)


    does not work. an error occurs in the console. I can’t find the reason at all. help me please.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Jules Colle

    (@jules-colle)

    There’s an error with your theme. you are running jQuery code before jQuery is loaded. The code below throws an error: jQuery is not defined. Please fix that error first, and also make sure that you are using the latest version of jQuery.

    jQuery(function($) {
      $(window).scroll(function() {
        if ($(this).scrollTop() > 140) {
          $('#navigation').addClass('fixed');
        } else if ($(this).scrollTop() < 140) {
          $('#navigation').removeClass('fixed');
        }
      });
    });
Viewing 1 replies (of 1 total)

The topic ‘HELP! nonIterableSpread.js:2 Uncaught TypeError: Invalid attempt to spread’ is closed to new replies.