Any ideas how to intercept the browser back button via jQuery, so I can run my event function? I don\'t need to use jQuery BBQ or jQuery Address, only prevent the default be
In jQuery land:
$(window).unload( function () { /*code here*/ });
EDIT- There was a parentheses instead of a close bracket
EDIT - Removed Extra Semicolin