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);
});
});