Skip to main content

Tracking Quick View Interactions

This event tracks when a shopper opens a Quick View popup to preview a product without leaving the page.

Collection

Quick view popup / widget opened
window.FastSimonSDK.event({
eventName: window.FastSimonEventName.QuickViewClickedCollection,
reportAppType: window.FastSimonAppType.SinglePage, // no redirect report now
data: {
collectionID: "123123", // (Required)
productID: "5454", // (Required)
position: 7 // (Required)
}
});

Search Result Page

Quick view popup / widget opened
window.FastSimonSDK.event({
eventName: window.FastSimonEventName.QuickViewClickedSerp,
reportAppType: window.FastSimonAppType.SinglePage, // no redirect report now
data: {
term: "cats", // (Required)
productID: "5454", // (Required)
position: 7 // (Required)
}
});

Recommendation Widget

Quick view popup / widget opened
window.FastSimonSDK.event({
eventName: window.FastSimonEventName.QuickViewClickedWidget,
reportAppType: window.FastSimonAppType.SinglePage, // no redirect report now
data: {
widget_id: "17496353898304754", // (Required) The widget ID from the recommendation response
productID: "5454", // (Required)
position: 7 // (Required) Position of the product in the widget (counted from 1)
}
});