Created
December 7, 2015 22:30
-
-
Save ericakfranz/31f3c2da791db743ec31 to your computer and use it in GitHub Desktop.
Write to the console when the main OM optin container has been attached to the outer DOM.
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('OptinMonsterAppendHolder', function(event, data, object){ | |
console.log('The ' + data.optin + '-' + data.type + ' main container is now attached to the outer DOM.'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment