👷‍♀️Manual Tracking(Sdk)

FrontEnd Tracking

Beyond the auto capturing functionality which be default captures multiple different user events and properties, Crunch offers the ability where you can manually track any event you like to.

You further go ahead and add different properties to those events using the script below —

// crunchit.track(Event Name, Custom Event Properties)
crunchit.track(
"Event_Name",
{
product_name:"my saas product",
product_quantity:7,
customProperty1:"my_custom_property_1",
customProperty2:{
propertyName:"my_custom_property_2",
propertyValue:20,
} // 
})

Last updated