Forum Moderators: open
if (window.event.shiftKey) // to capture shift key press
{
if (window.event.keyCode == 09) // to capture tab key press
{
alert('That\'s the Tab key');
}
}
You could try placing something prior to the radio buttons with an onfocus handler to refocus on the input box (messy).