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
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
Share on other sites

  • 2 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.