July 28th in Javascript by pbu .

how to hide textarea?

how to hide textarea from javascript?

The simple problem i faced to hide textarea while replacing a textarea with wysiwyg html editor simply because there is no visible property for textarea.

All you have to do is set the style to hidden

document.getElementById('textareabox').style.visibility="hidden";

Thats it!

Similar Posts:

Share and Enjoy:
  • del.icio.us
  • digg
  • StumbleUpon
  • Technorati
  • DZone
  • Facebook
  • FriendFeed
  • Reddit
  • RSS
  • Twitter

Leave A Comment.