jQuery(document).ready(function($) {
$('input[type="text"]').live('focus', function() {
if (this.value == 'someValue') {
this.select();
}
});
});
.delegate()と.on()でも同じ結果になります。
私は何が欠けていますか?
どんな助けでもありがたいです、ありがとう!