Event.observe($('body'), 'keypress', function(event){
if(event.keyCode == Event.KEY_TAB) {
$('sendMessage').focus();
Event.stop(event);
}});
Handling element focus with tab
Leave a Reply
You must be logged in to post a comment.