>
> maybe try something like this
>

$("#yesBut, #condBut").click(function(){
   if($("#yesBut").is(":checked") && $("condBut").is(":checked")) {
     $("#SubmitCard").removeAttr("disabled");
  }
  else {
     $("#SubmitCard").attr("disabled", "disabled");
  }
})

i am not too sure of my syntax and stuff, but hopefully you get the idea

and hopefully someone come up with a better solution than mine

Reply via email to