Demo 1 : Convert All Textareas
By calling the nicEditors.allTextareas() function the below example replaces all 3 textareas on the page with nicEditors. NicEditors will match the size of the editor window with the size of the
textarea it replaced.
First Textarea
Second Textarea
Third Textarea
Source Code
<div id="sample"> <script type="text/javascript"> bkLib.onDomLoaded(function() { nicEditors.allTextAreas() }); </script> <h4> First Textarea </h4> <h4> Second Textarea </h4> <textarea name="area2" style="width: 100%;"> Some Initial Content was in this textarea <h4> Third Textarea </h4> <textarea name="area3" style="width: 300px; height: 100px;"> HTML content default in textarea </textarea> </div>