Answers for "set html body tag readonly"

3

readonly attribute in html by javascript

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

read only html

<!-- Using readonly attribute is use to prevent changing of input value. -->
Example:
<input type="text" name="username" value="lol" readonly>
Posted by: Guest on August-17-2020

Browse Popular Code Answers by Language