O foco do jQuery não funciona no Chrome

Por favor, veja este violino:http://jsfiddle.net/yg49k/

O código a seguir funciona bem no FireFox, mas não funciona na versão mais recente do Chrome.

HTML:

<input type="text" id="one" placeholder="Type two chars" />
<input type="text" id="two" placeholder="It should focus here" />

jQuery:

$("#one").on("input", function() {
    if($("#one").val().length == 2) { $("#two").focus(); }
});

Alguém sabe como eu posso contornar isso?

questionAnswers(4)

yourAnswerToTheQuestion