Skip to content

Instantly share code, notes, and snippets.

@ericakfranz
Created December 7, 2015 22:30
Show Gist options
  • Save ericakfranz/31f3c2da791db743ec31 to your computer and use it in GitHub Desktop.
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.
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