1

How do I enable a radiobutton list using jQuery in IE 8 when it's disabled on the server side. The code works fine in Chrome, but does not work to get it enabled in IE 8.

$(this).removeAttr("disabled"); //code works in Chrome, but not in IE 
Steeven
  • 4,057
  • 8
  • 38
  • 68

1 Answers1

1

Better using this:

$(this).attr('disabled', false);
Alaa Badran
  • 1,848
  • 15
  • 19