1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
2 | <!-- |
---|
3 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. |
---|
4 | For licensing, see LICENSE.html or http://ckeditor.com/license |
---|
5 | --> |
---|
6 | <html> |
---|
7 | <head> |
---|
8 | <title>Replace Textarea by Code — CKEditor Sample</title> |
---|
9 | <meta http-equiv="Content-Type" content="text/html; charset=windows-1252" /> |
---|
10 | <script src="../ckeditor.js" ></script> |
---|
11 | <link href="sample.css" rel="stylesheet"> |
---|
12 | </head> |
---|
13 | <body> |
---|
14 | <h1 class="samples"> |
---|
15 | <a href="index.html">CKEditor Samples</a> » Replace Textarea Elements Using JavaScript Code |
---|
16 | </h1> |
---|
17 | <form action="sample_posteddata.php" method="post"> <!-- accept-charset="windows-1252" --> |
---|
18 | <div class="description"> |
---|
19 | <p> |
---|
20 | This editor is using an <code><iframe></code> element-based editing area, provided by the <strong>Wysiwygarea</strong> plugin. |
---|
21 | </p> |
---|
22 | <pre class="samples"> |
---|
23 | |
---|
24 | CKEDITOR.replace( '<em>textarea_id</em>' ) |
---|
25 | </pre> |
---|
26 | </div> |
---|
27 | <textarea cols="80" id="editor1" name="editor1" rows="10"> |
---|
28 | aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa |
---|
29 | </textarea> |
---|
30 | |
---|
31 | <script> |
---|
32 | CKEDITOR.addCss( 'body {word-break:break-all;}' ); |
---|
33 | CKEDITOR.replace( 'editor1', { |
---|
34 | fullPage: true, |
---|
35 | allowedContent: true |
---|
36 | }); |
---|
37 | </script> |
---|
38 | <p> |
---|
39 | <input type="submit" value="Submit"> |
---|
40 | </p> |
---|
41 | </form> |
---|
42 | <div id="footer"> |
---|
43 | <hr> |
---|
44 | <p> |
---|
45 | CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a> |
---|
46 | </p> |
---|
47 | <p id="copy"> |
---|
48 | Copyright © 2003-2013, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico |
---|
49 | Knabben. All rights reserved. |
---|
50 | </p> |
---|
51 | </div> |
---|
52 | </body> |
---|
53 | </html> |
---|