Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hidden TextArea

Tags:

html

css

In html for textbox it can be hidden by using <input type="hidden" name="hide"/> but for TextArea if I want to hide how should I use?

Anyone help me please,

Thanks,

like image 704
user1606816 Avatar asked Sep 07 '12 07:09

user1606816


People also ask

How do you hide text area in HTML?

HTML input type="hidden"

How do I enable textarea in HTML?

Easiest solution, add an id, and use getElementById. Almost. Remove the quotes around "false" to make the argument a boolean and not a string, and you'll have it.

What is hidden in HTML?

The hidden global attribute is a Boolean attribute indicating that the element is not yet, or is no longer, relevant. For example, it can be used to hide elements of the page that can't be used until the login process has been completed. Browsers won't render elements with the hidden attribute set.


1 Answers

Set CSS display to none for textarea

<textarea name="hide" style="display:none;"></textarea> 
like image 105
Mihai Iorga Avatar answered Oct 14 '22 09:10

Mihai Iorga