ericakfranz
12/7/2015 - 10:14 PM

Redirect to a specific url before the optin closes.

Redirect to a specific url before the optin closes.

jQuery(document).ready( function($){
    $(document).on('OptinMonsterBeforeClose', function( event, data, object ){
      var url = "http://optinmonster.com";
      $(location).attr('href',url);
    });
});