When the user presses Enter button, the focus is being moved to next textbox.
This is achieved  in IE. But I planned to support multiple browser. I have changed most of the places and which seems to be working fine except one place, where I am assigning tab value to the window.event.keyCode.
I am assinging window.event.keyCode = 9 for IE.
To support multiple browser, I changed it to event.which = 9 and also tried with event.which.keyCode = 9, which is not at all working. Please help me find a way to focus the next textbox with unknown ID when I press enter.