Hi,
In IE 7 the following script worked:
<
script
src
=
"/include/utils/jquery.hotkeys.js"
></
script
>
<
script
>
function
docHotKeys()
{
jQuery(document).bind(
'keydown'
,
'left'
,
function
(evt)
{
top.previousDocument();
return false
;
}
); jQuery(document).bind(
'keydown'
,
'right'
,
function
(evt)
{
top.nextDocument();
return false
;
}
);
}
jQuery(document).ready(docHotKeys);
</
script
>
But, in IE 8, this seems to be broken - the left and right arrow keys only function as hotkey only once. After that it needs to be refocussed and clicked. And, then the left and right arrow will function as hotkey.
In IE 7, the right and left arrow key functions as hotkey even though they are pressed multiple times.
What could be the issue or is ther any known issue. If yes, how do I go fixing this.