vote up 1 vote down star
1

Backspace is the browser hotkey for Navigate Back To The Last Page. I know that when an input has the focus this hotkey is disabled. But I have keyup and keydown events binded to this input, and something I wrote is causing this trouble.

Do you know the solution?

flag

Is your issue that the input has focus and the Backspace IS navigating back, or you want it to and its not? What exactly is the behaviour that you're seeing? – MadMurf Jul 21 at 2:07
If you suspect that something you wrote is causing the issue probably best to post the code here. Otherwise almost impossible to determine a solution. – MadMurf Jul 21 at 2:15
Exactly. It must not navigate back. In the present it is unfortunately doing it. – Jader Dias Jul 21 at 2:16
could you describe what this "something I wrote" does? – Ape-inago Jul 21 at 2:16
the code is here: code.google.com/p/task-management/… – Jader Dias Jul 21 at 2:17
show 2 more comments

5 Answers

vote up 0 vote down

That you can make:

  1. You can set a listener for InputField and look all keydown events.
  2. In event listener you can make a buffer variable, which have a real InputField value.

So, if you accept a not Backspace code then new value of buffer will be InputField value and you make use your hotKeyFunction, else new value of InputField will be buffer value and you get a normal working of InputField.

link|flag
vote up 0 vote down

You can try to hook into window.onbeforeunload event to prevent such accidental navigation.

link|flag
vote up 0 vote down

try this on you onKeyDown or onKeyPress even

if (event.keyCode==8)//where 8 ascii code of backspace { retunr; }

link|flag
vote up 0 vote down

The problem was caused by the input removal before returning the onKeyDown event.

link|flag
vote up 1 vote down

when you have handled the event from the input element, cancel that event's bubbling before returning.

link|flag
both event.preventDefault() or event.stopPropagation() solves the problem on IE and Chrome. But I still haven't found the solution for Firefox quirksmode.org/js/events_order.html – Jader Dias Jul 21 at 2:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.