Hi,
I'm struggling a little with the addition of Google Analytics in CFv4.
I added a custom code action on the onLoad event as seen a separate post:
I placed this first, before Show HTML.
Then I added a LoadJS action to the onSubmit event as follows:
I placed this LoadJS action first, before DB Save, Email and Show Thanks message.
It's not working and I'm not sure what else to try.
Any help gratefully accepted.
Thanks in advance.
I'm struggling a little with the addition of Google Analytics in CFv4.
I added a custom code action on the onLoad event as seen a separate post:
<?php
$form->form_params->set('jsvalidation_onValidateSuccess', 'trackEvent');
?>
I placed this first, before Show HTML.
Then I added a LoadJS action to the onSubmit event as follows:
function trackEvent() {
_gaq.push(['_trackEvent', 'Contact', 'Myformname', 'Submit']);
}
I placed this LoadJS action first, before DB Save, Email and Show Thanks message.
It's not working and I'm not sure what else to try.
Any help gratefully accepted.
Thanks in advance.