JavaScript DHTML/Document/Read Only
Версия от 09:59, 26 мая 2010; (обсуждение)
"readOnly" Example
<html>
<body>
<input type="text" id="myText" value="This text field is not editable" size="30">
<script language="JavaScript">
document.getElementById("myText").readOnly = true;
</script>
</body>
</html>