I have a textbox which has the code;
Now there is no e
in jQuery
//Press Enter in INPUT moves cursor to next INPUT $('#form').find(':input').keypress(function(e){ if ( e.which == 13 ) { $(this).next().focus(); //Use whatever selector necessary to focus the 'next' input } });
and write