autotrackClick

From Genesys Documentation
Revision as of 10:03, July 8, 2020 by DannaShirley (talk | contribs) (Published)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
This topic is part of the manual Journey JavaScript SDK for version Current of Genesys Predictive Engagement.

Learn how to configure which click events Genesys Predictive Engagement tracks on your websites, so you have more accurate page tracking information for use in segments and outcomes.

Description

The autotrackClick module tracks when and where a user clicks on a webpage. To use autotrackClick, use the following options to configure the click events that you want to track:

Signature

ac('load', 'autotrackClick', config, [callback]);

Example

ac('load', 'autotrackClick', {
  clickEvents: [
    { selector: 'button.bg-green', eventName: 'green_button_clicked' },
    { selector: 'footer *', eventName: 'footer_clicked' }
  ]
}, function () {
    console.log('"autotrackClick" has been loaded');
});

Config (required)

Description: identifies an array of click events that should be tracked.

Type: object

Properties:

Name Description Type Status
selector A string that selects elements. For more information, see https://developer.mozilla.org/en-US/docs/Web/API/Element/matches String required
eventName is a string that will be used as the event name when an element matching the selector is clicked. String required

Example

{
  clickEvents: [
    { selector: 'button.bg-green', eventName: 'green_button_clicked' },
    { selector: 'footer *', eventName: 'footer_clicked' }
  ]
}

Callback (optional)

When a module fully loads, callback is executed. No arguments are passed to the callback.

Retrieved from "https://all.docs.genesys.com/ATC/Current/SDK/autotrackClick (2024-10-06 19:01:07)"
Comments or questions about this documentation? Contact us for support!