Is there a way that a user can enter a URL in a textarea and have the link actually display and work as a hyperlink?
For example:
<textarea name="Miscell" cols="110" rows="5" wrap="Virtual" class="noborder">
blah blah blah=
<a href="http://www.googel.com/">Google</a>
blah blah blah
</textarea>
No link is displayed: what can I do?
I’m not creating that site: I’m just trying to change it using Firebug.
You can’t place any ‘Active Link’ inside a text area. A text area is designed to displaying text only content. Instead of that you can use div and using some css make div as a text area.
Eg: (Not my code)