Created
March 21, 2016 19:02
-
-
Save aliciaduffy/4aeed943a4f0ac06e3cc to your computer and use it in GitHub Desktop.
GA Events Gravity Forms Example
This file contains 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
$(document).on('gform_confirmation_loaded', function(){ | |
if ( window.location.pathname == '/' ){ | |
sendEvent( petaGA_FormCategory_eNews, petaGA_FormAction_Submitted, 'Subscribe to E-News: Front Page'); | |
} else { | |
sendEvent( petaGA_FormCategory_eNews, petaGA_FormAction_Submitted, 'Subscribe to E-News: Interior Page'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment