Hello!
I use RadFormDecorator for styling. My form contains a DropDownList (asp:DropDownList). I want to disable/enable the DropDownList by javascript.
It works good in FF and Chrome. But it does not work in IE.
How can I fix it?
Thanks
I use RadFormDecorator for styling. My form contains a DropDownList (asp:DropDownList). I want to disable/enable the DropDownList by javascript.
if (chb.checked) { jQuery("#" + ddlId).removeAttr('disabled');} else { jQuery("#" + ddlId).attr('disabled', 'disabled');}It works good in FF and Chrome. But it does not work in IE.
How can I fix it?
Thanks