Jump to content
Search Community

BillO57

Members
  • Posts

    1
  • Joined

  • Last visited

Posts posted by BillO57

  1. Scrolling over a DoubleClick banner ad can trigger a click event.  How can "touchstart", "touchmove" and "touchend" be used to determine the scrolling state on mobile?  Below is an example to detect scrolling and only allow a click event if not scrolling.  Any assistance to get this to work would be appreciated.

     

    EXAMPLE:

     

    var touchScrolling;

    window.addEventListener("touchmove", function(e) {
        this.scrollingState.text = "Scrolling";
        touchScrolling = true;
    });

    this.cta.on("click", function() {
        if (touchScrolling == true) {
            return;
        };
        Enabler.exit("Button Exit");
        window.open(window.clickTag, "_blank");
    });

×
×
  • Create New...