This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

ค้นหาฝ่ายสนับสนุน

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

เรียนรู้เพิ่มเติม

"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?