On each page
var leaving = true; $(function() { $('a[rel!=ext]').click(function () { leaving = false; }); $('form').submit(function () { leaving = false; }); }); $(function() { window.onbeforeunload = unloadPage; }); function unloadPage() { if(leaving) {
Then just make sure all links to external sites have the attribute rel="ext" .
source share