I'm trying to find the element that triggered a page exit. Say they click on an a href... I'll leave the JS-initiated location changes for another battle. I want to do some processing before exit (ie, save state of app).
What I've tried:
$(window).bind("unload", function(e) { console.log("====EXIT===="); console.log($(this)); console.dir(e); } );
Neither the $(this) nor "e" (event) reference the element that caused it.
- $(this) is nothing
- and "e" prints an empty object "c.Event"
i pressume this one will work for you.
Try with theese;