Custom Javascript Events
If you want to track events that are not covered by Intelligems’ built-in custom event types, yoyou can write any custom event using JavaScript. There are two ways to do this:
JavaScript custom event managed in Intelligems: this can be set up from the Events Manager. Make sure you leave the event name as-is in the generated code (
javascripteventGVYMQ
in this example):Events sent directly from your theme code: you can send events using JavaScript directly from your own site code, like this:
<script>
window.igEvents = window.igEvents || [];
window.igEvents.push({"event": "myCustomEvent"});
</script>
This event will then appear in the Events Manager, where you must register it (acknowledging the event and giving it a name) before you can start using it in experiments.
Last updated
Was this helpful?