vote up 0 vote down star
1

See title. Since I'm using jQuery, any solution via. that would work too. Ideally, I'd like to know both, though. I already have the arrow keys bound to another function on my page (via. jQuery), but having them cause the page to scroll in addition to that causes me problems.

I may have known this at one time, but I don't remember it anymore. :P

flag

It's extremely bad UI design to prevent keyboard keys from scrolling the active frame. I (and many other people) browse mostly with keys and it's very frustrating to have to use the mouse on the odd page here and there that blocks proper keyboard navigation. Of course, there are probably valid reasons to do it but you should make sure yours is one of them. – Andy E Jun 29 at 15:05
It is. My web application is an editor; not a formal webpage. – Daddy Warbox Jun 29 at 22:33

1 Answer

vote up 4 vote down check

Adding document level keypress handler does the trick!

var ar=new Array(33,34,35,36,37,38,39,40);

$(document).keypress(function(e){
     var key=e.charCode ? e.charCode : e.keyCode ? e.keyCode : 0;
      //console.log(key);
      //if(key==35 || key == 36 || key == 37 || key == 39)
      if($.inArray(key,ar))
      {
          e.preventDefault();
          return false;
      }
      return true;
});
link|flag
Oh neat. Lemme give it a shot... – Daddy Warbox Jun 29 at 5:07
1  
It handles PgUp(33), PgDn(34), End(35), Home(36), Left(37), Up(38), Right(39), Down(40) – TheVillageIdiot Jun 29 at 5:10
Yay! Thanks a lot. – Daddy Warbox Jun 29 at 5:11
really nice code, i like your code very much! – john Jun 29 at 5:15

Your Answer

Get an OpenID
or

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