How to disable and enable HTML form fields using JavaScript?
|
|
|
|
|
Question: How to disable and enable HTML form fields using JavaScript? Answer: To enable a form field use the below JavaScript document.getElementById("ELEMENT_ID").disabled = false;And to disable the form field use the below JavaScript document.getElementById("ELEMENT_ID").disabled = true; NOTE: Replace ELEMENT_ID with the form fields ID
|