Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I want my textarea to be hidden, how do I do it?

share|improve this question

5 Answers

Everyone is giving you answers, but not much on the reasons. Here you go: if you use the CSS rule visibility:hidden; the text area will be invisible, but it will still take up space. If you use the CSS rule display:none; the textarea will be hidden and it won't reserve space on the screen--no gaps, in other words, where it would have been. Here's a good visual example: http://www.w3schools.com/css/css_display_visibility.asp

To put the style rule in your textarea, you want something like this:

<textarea cols="20" rows="20" style="display:none;">
share|improve this answer

Using the CSS visibility property should do the trick.

share|improve this answer

Using css: display: none; (this will make the textarea disappear completely, the space it would normally take up will not be reserved)

share|improve this answer
i have this code <textarea name=text cols=20 rows=10> how do i set this to be hidden – nisnis84 Mar 2 '10 at 10:52
You could add style="display: none". As @thelost says, you could also do style="visibility: hidden". This will make the textarea still take up space on the page. You should really put this in a style sheet. That would mean adding class="hidden" to your textarea-tag and adding textarea.hidden { display: none; } to your css file – Rune Mar 2 '10 at 10:53

You have a few options, here are some examples:

  1. Display:none
  2. Visibility:hidden

Here is some example code for you to see for yourself

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Text Area Hidden</title>
    <style type="text/css">
        .hideButTakeUpSpace
        {
            visibility: hidden;
        }

        .hideDontTakeUpSpace
        {
            display:none;
        }

    </style>

</head>
<body>
    <h1>Text area hidden examples</h1>
    <h2>Hide but take up space (notice the gap below)</h2>
    <textarea class="hideButTakeUpSpace" rows="2" cols="20"></textarea>

    <h2>Hide Don't take up space</h2>
    <textarea class="hideDontTakeUpSpace" rows="2" cols="20"></textarea>


</body>
</html>
share|improve this answer

Yes it is possible. give this value to the item in css:

left: 9999px;

this will hide it from interface but still available in the page.

for your info: I use this Technic to have the headings out of page view but still Google can find it and excellent for SEO

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.