Created
September 26, 2013 16:05
-
-
Save moskinson/6716316 to your computer and use it in GitHub Desktop.
track sign up after send ajax form and before login
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function trackSignupOkPageViewToGAAndLogNewUser(){ | |
| fillLoginNewUserForm() | |
| if (typeof _gaq !== "undefined" && _gaq !== null) { | |
| _gaq.push(['_trackPageview', '/signupDone']); | |
| var timeout_for_login = setTimeout(sendFormToLoginNewUser, 300); | |
| } | |
| else sendFormToLoginNewUser() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment