When I click on a label, just below that some TextArea should be displayed with some predefined text in it and the user shouldn’t able to modify the TextArea’s content.
This is how I tried :
<html>
<head>
<script type="text/javascript">
function myfunc2() {
document.getElementById('showthis').style.visibility = "visible"
}
</script>
</head>
<body>
<label onclick="myfunc2()">Click here</label>
<textarea id="showthis" style="display:none">dfdsfsfasdfdsfsfasdfssdfsfasf</textarea>
</body>
</html>
iam new to this html and javascript.. pls someone help me on this..
try this..
updated
check for classname (hide).. if yes.. show the textarea and name it
show… else hide it and name the classname ashideJAVASCRIPT
add a hide class to your html
textarea.HTML