TextArea 'value' : TextArea « Form Control « JavaScript DHTML
- JavaScript DHTML
- Form Control
- TextArea
TextArea 'value'
<html>
<head>
<script language="JavaScript">
function function1() {
alert(myTextArea1.value);
}
</script>
</head>
<body onload="function1();">
<textarea id="myTextArea1">textarea value</textarea>
</body>
</html>
Related examples in the same category