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:
Seems like a bug in Chrome. Sometimes it is too fast to execute events properly;)
Found a workaround http://jsfiddle.net/Rd2rZ/
$("#one").on("input", function() {
if($("#one").val().length == 2) {
setTimeout(function(){
$("#two").focus();
}, 1);
}
});
Use setTimeout with a minimal delay. It will slow down Chrome and make it work.