Is it possible to place a "clickable" link inside a textarea?
For example:
<textarea ...><a href="foo.htm">
tia
For example:
<textarea ...><a href="foo.htm">
tia
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<style>
.clsTextArea
{
width: 300px;
height: 300px;
border-style: solid;
border-width: 2px;
border-color: black;
background-color: white;
color: black;
overflow: scroll;
}
</style>
....
....
<body>
<div class="clsTextArea">
Here is some text including an <a href="somepage.html">active link</a>.
</div>
</body>