Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<form>   
<input class="disableButton" id="email" type="email" />         
<input class="disableButton" id="pass" type="password" />
<select id="state" class="selected-state disableButton disableButton" >
    <option value="">State</option>
    <option value="AL">AL</option>
    <option value="AK">AK</option>
    ...
</select>
<input id="emailPassSubmit" type="button" disabled="disabled" />
</form>
<script>
$(function(){
            $('.disableButton').keyup(function(){
                if ($('#email').val() == '' || $('#pass').val() == '' || $('#state').val() == '') {
                        $('#emailPassSubmit').attr('disabled', true);
                } else {
                        $('#emailPassSubmit').attr('disabled', false);
                }
            });
});
</script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
printvoidpro
0viewers