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:
- how to get selected textarea value using javascript
- iframe innerHTML value from textarea
- A Simple WYSIWYG Editor in Javascript
- iFrame in javascript wont work in Firefox [solved]
- Fix -> Caret/Cursor jumps to start of textarea in javascript
- Create selected text to hyperlink in Javascript
- how to change div content in javascript?
- Free Markup TextArea HTML Editor in Javascript
- Lightweight PHP WYSIWYG HTML Editor
- Top Best Web based WYSIWYG html editors (Free)

