I'm trying to capture the onmouseup event from a facebook application, specifically, when a user clicks down on my application, then drags the mouse out of its frame and into the facebook page and then lets go of the mouse.
It seems trivial, and this works on Firefox.
window.onmouseup = function () { console.log('mouseup outer'); };
This even works within a frame when testing on a normal web page in chrome and firefox. But on facebook, as soon as you get out of the application's frame, the event won't fire.
I cant use parent.window.onmouseup either because of cross domain restrictions. Obviously I can't modify facebook's code.
Any ideas would be greatly appreciated.