入力からキー押下をキャプチャしてから要素にフォーカスしようとしています。
<input id="asdfasfd1" />
<input id="asdfasfd2" />
<select id="currency"><option>bla</option></select>
$(function() {
var currencyElement = $('#currency');
$('#asdfasfd1').bind('keypress', function(event) {
event.preventDefault();
currencyElement.focus();
});
});
http://jsfiddle.net/KkXwT/6/はIE8、9、10およびChrome 23で動作しますが、Firefox 17では動作しません。なぜ動作しないのか知っている人はいますか?