I've following textbox which is initially disabled:
<input id="txtCustFName" name="txtRCustFName" type="text" required disabled="true"/>
on click on following anchor tag i m calling the js to enable the above text box: HTML: Enable
JS:
EnableTxt()
{
document.getElementById("txtCustFName").disabled = false;
}
But this code is not working. I am not able to enable text box.
How can I do this?