averageuser Posted November 29, 2007 Share Posted November 29, 2007 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 More sharing options...
phpQuestioner Posted November 30, 2007 Share Posted November 30, 2007 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 More sharing options...
corylulu Posted December 13, 2007 Share Posted December 13, 2007 and if you want it to move with the cell size... simply make the width and height percentages instead of px's Link to comment https://forums.phpfreaks.com/topic/79434-freeflowing-textarea/#findComment-413596 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.