Forum Moderators: DixonJones
Identical URLs across multiple steps
You may also wish to track visitors' progress through a funnel which has the same URL for each step. For example, your sign up funnel might look like this:
Step 1 (Sign Up): www.mysite.com/sign_up.cgi
Step 2 (Accept Agreement): www.mysite.com/sign_up.cgi
Step 3 (Finish): www.mysite.com/sign_up.cgi
To get around this, you can call the _trackPageview function within each step (probably within an onload event), as shown below.
<google code>
Then, set up each step of your funnel to be:
<google code>
The path/filename argument need not represent an existing path or filename. The argument to _trackPageview simply provides a made-up pagename to which Google Analytics can attach pageviews.
<script src="https://ssl.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-1520030-1";
urchinTracker();
pageTracker._trackPageview("/funnel_G1/signup.html");
</script>