Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a subscription form in HTML that uses (or should use) a jquery code to grey out the SUBMIT button until the field name has been filled out.

However, it is not working...

Any clue of what is wrong? Here is the code:

<head>
<script type="text/javascript">
var $submit = $("input[type=submit]");
if ( $(".subName").length > 0 ) {
   $submit.attr("disabled","disabled");
} else {
   $submit.removeAttr("disabled");
}
</script>
</head>
<body>
<form action="" method="post" id="subscribe" name="subscribe">
<input type="hidden" name="action" value="subscribe">
<label>NAME:</label>
<input type="text" name="name" class="subName" id="sub_first_name">
<label>EMAIL:</label>
<input type="text" name="email" class="subEmail" id="sub_email">
<input type="submit" name="button" value="Subscribe" />
</form>
</body>

Thanks!

-------------------------- EDIT

<form action="" method="post" id="subscribe" name="subscribe">
<label>NAME:</label>
<input type="text" name="name" class="subName" id="sub_first_name">
<label>EMAIL:</label>
<input type="text" name="email" class="subEmail" id="sub_email">
<input type="submit" name="button" value="Subscribe" />
</form>

JS:

<script type="text/javascript">
$(document).ready(function() {
    var $submit = $("input[type=submit]");
    $('.subName').on('change', function() {
        if ( ! $(".subName").val().length ) {
           $submit.attr("disabled","disabled");
        } else {
           $submit.removeAttr("disabled");
        }
    });
}
</script>

But still not working :(

share|improve this question
Yes.. you are only checking it when the page loads.. You should bind it to an event – wirey Jan 31 at 14:33

2 Answers

Besides binding it to an event, do you also include jQuery in your header? For example like this:

<script type="text/javascript" src="js/jquery-1.7.1.js"></script>
share|improve this answer
$(document).ready(function() {
    var $submit = $("input[type=submit]");
    $('.subName').on('change keyup', function() {
        if ( !$(this).val().length ) {
           $submit.attr("disabled","disabled");
        } else {
           $submit.removeAttr("disabled");
        }
    });
});
share|improve this answer
1  
It should be $(".subName").val().length. $(".subName").length will be the number of elements matching the selector, i.e having the class "subName" – Peter Herdenborg Jan 31 at 14:33
right, I was about to change it :D – David Fregoli Jan 31 at 14:34
Nice to finally be quicker than someone else on here :). – Peter Herdenborg Jan 31 at 14:38
1  
If you want the greying out of the button to be more "responsive", you could use $('.subName').on('change, keyup'), function(){...} and it will update with every keystroke (change will only trigger when focus leaves the field I think). Also, it would be better maybe to select by id instead of class: $('#sub_first_name').on()... – Peter Herdenborg Jan 31 at 14:40
Would you mind writing that as an answer with the code? Or in a fiddle? – samyb8 Jan 31 at 14:44
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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