I'm using Google Forms (a Google Doc spreadsheet with an automatically generated form that the user can fill in to submit their details) and would like to track the submission of the form as a virtual pageview in Google Analytics so that I can measure conversions. Does anybody know if this is possible?
|
|
While Crayon Violent is correct about the built-in capabilities, there is a viable option: If you're able to host the Google Form HTML on one of your own pages, you can treat it like any other form (you can literally copy and paste the form HTML from the form page). As long as you leave the inputs unmodified, and the form action remains as its presented, it will post successfully to the form, regardless of where it is hosted from. (You can remove the styling elements if you wish.) You can see a sample of that here: http://jsfiddle.net/PVBqX/2/ And you can see the data record just fine in the Google Spreadsheet here. And, if you use Firebug or Webkit inspector, you'll see that the virtual pageview is sent:
|
|||||||||||
|
|
Solved! The idea is to "proxy" Google Form through some script on my site, so that the script would inject the necessary analytics code (trackPageview or trackEvent) into the form before it is shown in a frame. Using the script you embed the form in the way like this:
This requires less effort and changes to the existing page code than pulling the form HTML, modifying it and putting into a page manually. No pain even if you have dozens of forms to track. More details at http://google-forms-analytics.com/ |
||||
|
|
|
not possible. You have to be able to add code to the actual file being served. Only thing I can think of is if it lets you redirect to one of your own pages after form submission, put the code on a page you create on your own site |
|||
|
|

