空の入力でバックスペースを押すと、前の入力に戻るにはどうすればよいですか?
$('input').bind('input', function() {
if (this.value.length >= $(this).attr('maxlength')) {
$(this).next().select();
}
if (this.value.length == 0) {
$(this).prev().select();
}
});
JSFIDDLE: http://jsfiddle.net/EwYKX/