You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
911 B

4 days ago
  1. <html>
  2. <head>
  3. <title>Demo 1 : Convert All Textareas</title>
  4. </head>
  5. <body>
  6. <div id="menu"></div>
  7. <div id="intro">
  8. 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.
  9. </div>
  10. <br />
  11. <div id="sample">
  12. <script type="text/javascript" src="../nicEdit.js"></script>
  13. <script type="text/javascript">
  14. bkLib.onDomLoaded(function() { nicEditors.allTextAreas() });
  15. </script>
  16. <h4>First Textarea</h4>
  17. <textarea name="area1" cols="40"></textarea>
  18. <br />
  19. <h4>Second Textarea</h4>
  20. <textarea name="area2" style="width: 100%;">
  21. Some Initial Content was in this textarea
  22. </textarea>
  23. <br />
  24. <h4>Third Textarea</h4>
  25. <textarea name="area3" style="width: 300px; height: 100px;">
  26. HTML <b>content</b> <i>default</i> in textarea
  27. </textarea>
  28. </div>
  29. </body>
  30. </html>