0

iPad/iPhone を含むすべてのブラウザーで機能するソリューションを探しています。この質問の過去の投稿を確認しましたが、IE で動作していないことを除いて、次のようなものはすべて正常に動作しています。

$("input[type='text'], textarea, input[type='password'], input[type='number']").live('mouseup', function(e) {
    e.preventDefault();
});

$("input[type='text'], textarea, input[type='password'], input[type='number']").live('focus', function() {
    this.setSelectionRange(0, 9999);
});​
4

1 に答える 1