vote up 0 vote down star

i have this hmtl:

<input type="text" name="textField" />
 <input type="submit" value="send" />

how can i do something like this: -when the text field is empty the submit should be disabled(disabled="disabled") -when something is typed in the text field to remove the disabled attribute -if the text field becomes empty again(the text is deleted) the submit button should be disabled again

i tried something like this

$(document).ready(function(){
     $('input[type="submit"]').attr('disabled','disabled');
     $('input[type="text"]').change(function(){
            if($(this).val != ''){
               $('input[type="submit"]').removeAttr('disabled');
            }
     });
 });

..but it doesn't work.any ideas? thanks

flag

3 Answers

vote up 1 vote down check

The problem is that the change event fires only when focus is moved away from the input. Try using keypress instead:

$(document).ready(function(){
     $('input[type="submit"]').attr('disabled','disabled');
     $('input[type="text"]').keypress(function(){
            if($(this).val != ''){
               $('input[type="submit"]').removeAttr('disabled');
            }
     });
 });
link|flag
ok, but the problem is when i delete the last letter i have to press even one more time to capture the empty val and disable my button, cause when i press the backspace to delete the last letter my field is still populated , so my keypress is captured and then the letter is deleted. so...how should i do it right? – kmunky Oct 20 at 14:52
Oh, my apologies for not testing the code first. If you replace keypress with keyup does that help? – Eric Palakovich Carr Oct 20 at 15:14
yup it does, thanks again :) – kmunky Oct 20 at 15:16
vote up 2 vote down
$(function() {
  $(":text").keypress(check_submit).each(function() {
    check_submit();
  });
});

function check_submit() {
  if ($(this).val().length == 0) {
    $(":submit").attr("disabled", true);
  } else {
    $(":submit").removeAttr("disabled");
  }
}
link|flag
great, thanks :) – kmunky Oct 20 at 14:25
yap it works! but..one question though...can you explain this : $(":text").keypress(check_submit).each(function() { check_submit(); }); thanks – kmunky Oct 20 at 15:09
vote up 0 vote down

eric, your code did not seem to work for me when the user enters text then deletes all the text. i created another version if anyone experienced the same problem. here ya go folks:

$('input[type="submit"]').attr('disabled','disabled');
$('input[type="text"]').keyup(function(){
    if($('input[type="text"]').val() == ""){
        $('input[type="submit"]').attr('disabled','disabled');
    }
    else{
        $('input[type="submit"]').removeAttr('disabled');
    }
})
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.