Answers for "How to make form input editable in javascript"

2

js making input non typeable

//Use readonly

<input id="myInput" readonly>
Posted by: Guest on June-01-2020
3

readonly attribute in html by javascript

document.getElementById("yourID").readOnly = true;
Posted by: Guest on November-10-2020

Code answers related to "How to make form input editable in javascript"

Browse Popular Code Answers by Language