Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
google chrome. yeah, i can see why you're having problems :) – Nate Koppenhaver May 24 '11 at 3:33
1  
Facebook is most likely blocking mouse events from firing outside the application frame. Does it work on other browsers? Chrome is standards compliant, so that shouldn't be the issue. – tjameson May 24 '11 at 6:38
Yeah it works on firefox which is strange. – Garrows May 24 '11 at 7:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.