hallo,
wie kann ich denn readonly/disable mit javascript für ein inputfeld setzen?
var field = document.createElement("input");
field.readonly = true;klappt als beispiel nicht.
grüße Chris
Hi,
versuche mal sowas ähnliches:
<html>
<head>
<title>Test</title>
</head>
<body>
<form name="form" action="" method="post">
feld: <input type="text" size="40" name="input" value="Test" onclick="document.form.input.disabled=true" />
</form>
</body>
</html>