Skip to content

Instantly share code, notes, and snippets.

@ericakfranz
Created December 3, 2015 16:28
Show Gist options
  • Save ericakfranz/a41abb08d79309edafa3 to your computer and use it in GitHub Desktop.
Save ericakfranz/a41abb08d79309edafa3 to your computer and use it in GitHub Desktop.
Custom Redirect for all optins on close using the OptinMonster event 'OptinMonsterOnClose'.
jQuery(document).ready(function($){
function omRedirect() {
var url = "http://optinmonster.com";
$(location).attr('href',url);
}
$(document).on('OptinMonsterOnClose', function(event, data, object){ omRedirect(); });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment