I'm having an issue here. I want to create a text box which I have done. But I want an onclick function too work with it. For example, If I were to type something in the text field and then clicked the 'click' button, I would want the text to appear on the white space of the site. Here is the current code:
<html>
<head>
<title>The Worlds Story!</title>
</head>
<body>
<h1>The Worlds Story</h1>
<textarea name="message" rows="10" cols="30">
Tell Your Story!
</textarea>
<button onclick="myFunction()">Click me</button>
</body>
</html>
Please help. Thank you.