I have a question regarding events.
Basically, I want to run a jquery method when the user clicks a link to leave the page. In this method I want to check a few things before they leave, so I know I can call:
e.preventDefault();
But what if I want the event to continue after I prevent the event?
Any suggestions how to approach this?
Thank you!