Jump to content

Freeflowing Textarea


averageuser

Recommended Posts

Hey Guys,

 

I was wondering if there was a way to have a freeflowing textarea, so it would essentially resemble standard word-wrapping and stretching of a table cell, with no specified height or width.  Reason being, I want the textarea to be virtually hidden from the user, so it can be used simply as an element allowing POSTing of its data.

 

 

Thanks.

Link to comment
https://forums.phpfreaks.com/topic/79434-freeflowing-textarea/
Share on other sites

if you do not want people to see this field and you don't want them to be able to edit it; why don't you just create a hidden input field?

 

like so:

 

<input type="hidden" name="fieldNameHere">

 

or if you want to do it a different way; you could do this:

 

<textarea style="display:none" readonly disabled></textarea>

 

or.........

 

<textarea style="width:1px;height:1px;overflow:hidden" readonly disabled></textarea>

 

Link to comment
https://forums.phpfreaks.com/topic/79434-freeflowing-textarea/#findComment-402542
Share on other sites

  • 2 weeks later...

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.