whoback
whoback

Reputation: 59

Cannot get Google Analytics Event tracking to work

Trying to track a contact form with no separate landing page. Event tracking will not show up in GA. Cannot see what I'm doing wrong. Any pointers?

<p><input class="submit contact-button" type="submit" value="<?php _e('Submit', 'colabsthemes'); ?>" onSubmit=”_gaq.push(['_trackEvent', 'Email', 'Submit']);” /></p>

Upvotes: 1

Views: 241

Answers (1)

AbsoluteƵER&#216;
AbsoluteƵER&#216;

Reputation: 7870

onsubmit needs to go into the form tag with the right quotes.

You'll also need to make sure that Google Analytics is installed on the form handler page.

Upvotes: 1

Related Questions