hi,
in my jsp i have a radiobutton group and a textbox (which is disabled initially) .
whenever user clicks on last(or, one of the) radio button the textbox should be enabled and when user clicks on some other radiobutton text box should again get disabled.
i am able to enable the initially disabled checkbox with the following code :
$("#DevGroup_OTHER").click(function(){
$("#otherDevText").attr("disabled","");
})
then how to do disable it again?
it could be a simpler one, but i am new to jquery hence searching around for a simpler one.
any help?
regards