Please see this fiddle: http://jsfiddle.net/yg49k/
The following code works fine in FireFox but doesn\'t work in the latest version of Chrome.
HTML:
You should use:
$("#one").on("keyup paste",function() { console.log($(this).val()); if($(this).val().length == 2) { $("#two").focus(); } });
DEMO
And the same for the #five handler.
#five
The oninput event seems to have the same behaviour as onkeypress.