Skip to main content

clicked

The clicked event logs an instance where a customer clicks on a page element.

Anchor to clientId
clientId
string

The client-side ID of the customer, provided by Shopify

An object that contains data about a mouse event

string

The ID of the customer event

string

The name of the customer event

number

The sequence index number of the event.

Anchor to timestamp
timestamp
string

The timestamp of when the customer event occurred, in ISO 8601 format

.Dom
Examples
import {register} from '@shopify/web-pixels-extension';

register(({analytics}) => {
analytics.subscribe('clicked', (event) => {
// Example for accessing event data
const element = event.data.element;

const elementId = element.id;
const elementValue = element.value;
const elementHref = element.href;

const payload = {
event_name: event.name,
event_data: {
id: elementId,
value: elementValue,
url: elementHref,
},
};

// Example for sending event to third party servers
fetch('https://example.com/pixel', {
method: 'POST',
body: JSON.stringify(payload),
keepalive: true,
});
});
});

Was this page helpful?