Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

"ESC" event keycode not detected in document.keydown listener while exiting fullscreen mode

  • 1 답장
  • 9 이 문제를 만남
  • 1 보기
  • 최종 답변자: gnittala

more options

I have a code to fire on exiting full screen mode. Therefore, i bind it to :

  1. (window.document).keyup(function(e) {
  2. if(e.keyCode === 27 ) {
  3. // do something //
  4. }
  5. });

Now, When i am in fullscreen mode,

1. When i press "ESC", Fullscreen mode exits but my function does not gets fired. 2. When i press "ESC" after fullscreen mode have exited, My function gets fired.

That means "ESC" event was not propagated to code when browser was in fullscreen mode. ( * This works correctly in chrome )

3. This is bit too much too ask, but can i bind browser's exit full screen button which appears at the top ??

I have a code to fire on exiting full screen mode. Therefore, i bind it to : # (window.document).keyup(function(e) { # if(e.keyCode === 27 ) { # // do something // # } # }); Now, When i am in fullscreen mode, 1. When i press "ESC", Fullscreen mode exits but my function does not gets fired. 2. When i press "ESC" after fullscreen mode have exited, My function gets fired. That means "ESC" event was not propagated to code when browser was in fullscreen mode. ( * This works correctly in chrome ) 3. This is bit too much too ask, but can i bind browser's exit full screen button which appears at the top ??

모든 댓글 (1)

more options

If you are using HTML5, I think the way to do is to bind with the fullscreen APIs that are still inprogress. You could try these two links to see if that helps you

  1. HTML5 Full screen API
  2. Mozilla support for fullscreen
  3. HTML5 fullscreen API

You could create an event listener for the document.cancelFullScreen() and then see if that helps.

Any specific reason why you want to bind to the button and not to the event?