Created
May 7, 2018 18:23
-
-
Save jtsternberg/b2ef95043d01d52c849e2eebd2e7652e to your computer and use it in GitHub Desktop.
optinmonster track impressions/conversions when Google Analytics are disabled
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
jQuery( function( $ ) { | |
$( document ) | |
.on( 'OptinMonsterOnShow', function( event, props, app ) { | |
// Track Impression | |
}).on( 'OptinMonsterOptinSuccess', function( event, props, app ) { | |
// Track Conversion | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment