• Javascript and function call shows in the source. No errors in the console. Universal GA object. Default settings (0, blank, true, true, false, false, false). We do not see any new categories created in Analytics. Real Time traffic is not showing any scrolling (we omit our own testing because of IP filter, but the site is busy enough). Thanks in advance.

    Edit: Verified these in console:

    GoogleAnalyticsObject
    “ga”
    typeof(jQuery.scrollDepth)
    “function”

    • This topic was modified 7 years, 2 months ago by cbquest. Reason: added console outputs

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • I wonder if it’s fighting with your sticky header function:

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

    It seems I have the same problem. Was the sticky header the issue?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Cannot see any events firing’ is closed to new replies.