I have a text area on my site which shows the user a certain value. The problem is that when i click the text area (form) and press enter, it shows a 404 error. How can I edit my existing html code to remove the submit/enter action, so that the page doesnt lead to a 404?
Here’s my code:
<input type="text" name="postLink" size="48" value="This is a value!" />
You should have an
<input type="submit>field somewhere. Delete that. Or, remove the encapsulating<form>tag.