Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Textarea questions... 1

Status
Not open for further replies.

tviman

Programmer
Jul 25, 2002
2,123
US
I think I've had a brain-fart because I can't seem to get around this one...

In a textarea, is it possible to create a text link? How about a mailto: link? I've tried the obvious but no joy. I'm thinking that a div with overflow statement might be the better choice....

Thanks for any help.....


Patrick

There's always a better way. The fun is trying to find it!
 
Not quite sure what you mean...

something like:
Code:
<a href="mailto: blah@blah.com"><textarea></textarea></a>
or something like:
Code:
<textarea><a href="mailto: blah@blah.com">email</a></textarea>


[cheers]
Cheers!
Laura
 
Laura...

this:

Code:
<textarea><a href="mailto: blah@blah.com">email</a></textarea>

renders this in the textarea:

<a href="mailto: blah@blah.com">email</a>

not the link...




There's always a better way. The fun is trying to find it!
 
Okay - I've tried a DIV with overflow: scroll. this wiokrs well. Now, is there a way to specify vertical scroll bars only?

There's always a better way. The fun is trying to find it!
 
I was asking a question, not posting a possible solution...

[cheers]
Cheers!
Laura
 
overflow: auto

Known is handfull, Unknown is worldfull
 
I was asking a question, not posting a possible solution...

Laura... sorry for any misunderstandings. I was just trying to point out that the anchor tag inside of the textarea didn't give a link - just the anchor mark-up - that's what my problem was.

Kris - thanks for the heads-up! I can't tell you why I didn't try that - I looked right at it several times. Maybe I'm overdosing on my pain medication??? (Suffering from a really painful hip-dislocation...)

There's always a better way. The fun is trying to find it!
 
no problem...

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top