Jump to content

Make clickable area in textarea


lindm

Recommended Posts

Ahh, you said it would be submitted with the form.

 

The only way I can see to do this is to use some fancy absolute positioning.

 

<div id="box_wrapper">

  <a id="floating_link">link</a>

  <textarea></textarea>

</div>

#box_wrapper
{
  position:relative;
}
#floating_link
{
  position: absolute;
  right:3px; //adjust this
  top:15px; //adjust this
}

 

Not tested, but it should be something like this.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.