1 $("#radiobutt input[type=radio]").each(function(i){
2 $(this).click(function () {
3 if(i==2) { //3rd radiobutton
4 $("#textbox1").attr("disabled", "disabled");
5 $("#checkbox1").attr("disabled", "disabled");
6 }
7 else {
8 $("#textbox1").removeAttr("disabled");
9 $("#checkbox1").removeAttr("disabled");
10 }
11 });
12
13 });