Skip to content Skip to sidebar Skip to footer

Href Inside Textarea?

im trying to make a hyperklink in a textarea box...is that possible? This is what i got, just shows up as text: <%-- Preserve the in

Solution 1:

No, it isn't. You can't have any kind of markup inside a textarea.

However, since you have marked the textarea as readonly I'm going to guess that you are abusing it as a display widget instead of as a tool for getting input from the user. Don't do that.

Use a more appropriate element (paragraph, div, etc), and style it. You probably want to adjust the font, height, width and overflow.

Post a Comment for "Href Inside Textarea?"