JavaScript Tracking Client
Last updated
Was this helpful?
Last updated
Was this helpful?
You can use the JavaScript tracking client to track any application that supports JavaScript, including websites!
To find the tracking code for your website, follow the steps below:
Click Settings
Click Integrations
Click Website
Click on “Copy Script” for the website you wish to track.
Paste the JavaScript tracking code into your pages, just after the opening <body> tag (or within the <head> section)
The tracking code looks as follows:
Interactions with content blocks are usually tracked automatically as soon as a visitor clicks on them. In certain cases, you may want to trigger an interaction manually. For instance, there may be a case where you want to trigger an interaction based on a form submission or a double click. To do so call the method trackContentInteractionNode(domNode, contentInteraction).
You should use the method trackContentInteraction(contentInteraction, contentName, contentPiece, contentTarget) to track an interaction on your website. The example below shows how to track a click on a button; however, the same principle can be applied to any block on the site that you want to track clicks on.
You should use the method trackContentImpression(contentName, contentPiece, contentTarget) to track impressions on specific blocks on your website.
The below example shows how to track a carousel when it scrolls into view:
By default, Satisfi Labs tracks page views when the JavaScript tracking code loads and executes each page view. However, on modern web applications, user interactions do not necessarily involve loading a new page. For example, when users click on a JavaScript link, or when they click on a tab (which triggers a JS event), or when they interact with elements of the user interface, you can still track these interactions with Factoreal.
To track any user interaction or click with Factoreal, you can manually call the JavaScript function trackEvent(). For example, if you wanted to track a click on a JavaScript menu, you could write:
This can also be used to track any other custom event. For Example, on Google Login you can add this event to the Factoreal CDP:
Don't hesitate to get in touch with our team at me-support@satisfilabs.com with any questions you may have!