Can I have a link that when clicked displays text inside a textarea?
This is what I have.
<script type="text/javascript">
mybutton: onclick {
document.myform2.mytextfield2.value = "Test";
}
</script>
<form name="myform2">
<input type="button" name="mybutton" value="Go">
<input type="text" name="mytextfield2">
</form>
Please tell me what ...