ユーザーが入力にすべての情報を入力し、チェックボックスをオンにしたときに、ボタンから無効化属性を削除するにはどうすればよいですか?
私の試み:
フルコード: http: //jsfiddle.net/7zMRM/1/
$('#id_accept').click(function(){
if($('#id_accept:checked').length == 1 && $('#id_blz').length == 8 && $('#id_account_owner').length > 3 && $('#id_account_number').length == 22 && $('#id_bank_name').length > 3){
$('#open').removeAttr('disabled');
$('#open').attr('onclick','javascript:yourFunctionName();');
}
else{
$('#open').removeAttr('onclick');
$('#open').attr('disabled','disabled');
}
});