Forum Moderators: open
<form action="noaction" name="linktext">
<textarea name="link" cols="38" rows="4">
<a href="http://www.DOMAIN.com/KeywordGoesHere.html">Keyword Text Goes Here.
</textarea></form>
<form action="noaction" name="linktext">
<textarea name="link" cols="38" rows="4">
<a href="http://www.DOMAIN.com/KeywordGoesHere.html">Keyword Text Goes Here.</a>
</textarea></form>
When I run it through the w3c validator I get this error:
document type does not allow element "A" here and it was pointing to the caret just before where the link text goes.
<form action="noaction" name="linktext">
<textarea name="link" cols="38" rows="4">
<a href="http://www.DOMAIN.com/KeywordGoesHere.html">Keyword Text Goes Here.</a>
</textarea></form>
The forced method that would validate would be placing onclick:
<form action="noaction" name="linktext">
<textarea name="link" cols="38" rows="4" onclick="parent.location.href='http://www.DOMAIN.com/KeywordGoesHere.html';">
Keyword Text Goes Here.</textarea></form>
However this is not a proper way to do it.