Tracking Sign-Up Form Conversions
What events does the form send?
Receiving form events
window.addEventListener("message", messageReceived, false);
function messageReceived(e)
{
if ( e.data == 'activenowDetailsLoaded' ) {
// Call the relevant Facebook or Google event here
}
if ( e.data == 'activenowFormSubmitted' ) {
// Call the relevant Facebook or Google event here
}
}Sending events to Google / Facebook
Last updated
Was this helpful?