I have some web app. It is desktop based. I have an issue where the action is getting canceled before I save my data. I am using an unload event in javascript to send some data to mixpanel (just some ajax call). The problem is that I believe that this request gets "cancelled" on occasion.
Is there a way to prevent the page from changing until I get to a callback? I feel like the answer is a no unless I am able to make the call synchronous. I don't think I have that ability with mixpanel.
I am currently using the unload event in mootools. I should probably use beforeunload? Is there a way to tell unload that I am done?