Hi,
I'm trying to disable and reenable certain items in a .net 2.0 radiobuttonlist using jquery.
I have 3 tabs which control which radiobuttons are enabled or disabled.
when tab 1 is clicked I disable radiobutton 2 like:
$("#ctl00_cphMain_cblStatus_2").attr("disabled", false);
when I want to re-enable radiobutton 2 neither of these 2 methods seem to be working:
$("#ctl00_cphMain_cblStatus_2").attr("disabled", false);
$("#ctl00_cphMain_cblStatus_2").removeAttr("disabled");
It doesn't work in either IE 8 or Firefox 3.0.16 . Any ideas on what I'm doing wrong?
Thanks!