To main page | Opera Unite HowTo's
onunload / _close This doesn't work! The _close event is never called.
Documentation specify → that this should work, but so far (current alpha release of Opera - this doesn't work):
There's no window.onunload, but there is '_close' event in URLs:
function onunload() {
// save state here
};
opera.io.webserver.addEventListener('_close', onunload, false);
|