I’m new at this, especially with Firefox, so any help would be appreciated. I am trying to stop the focus from moving option to option within a form when using the arrow keys. Here is the code that I am currently using to do this:
document.onkeydown =
function () {
return false;
};
This seems to work fine in IE, but I need it to work in Firefox also. I was hoping someone could give me some insight on my problem. Thanks in advance for any advice.
Dan
document.onkeydown =
function () {
return false;
};
This seems to work fine in IE, but I need it to work in Firefox also. I was hoping someone could give me some insight on my problem. Thanks in advance for any advice.
Dan