Is there a way to redirect the window or tab when a user closes it? This does not work (in jQuery):
$(window).bind('beforeunload', function() { window.location = 'anotherpage.html' } Is it even possible? I just want to redirect a user to another page when they close it.