Created
December 7, 2015 22:32
-
-
Save ericakfranz/46e9fa181660d8937e7b to your computer and use it in GitHub Desktop.
Write to the console when the custom OM optin has finished loading.
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(document).ready(function($){ | |
$(document).on('OptinMonsterCustomDone', function(event, data, object){ | |
console.log(data.optin + '-' data.type + ' is using a custom optin form and has finished loading.'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment