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-2012, CKSource - Frederico Knabben. All rights reserved. |
---|
4 | For licensing, see LICENSE.html or http://ckeditor.com/license |
---|
5 | --> |
---|
6 | <html xmlns="http://www.w3.org/1999/xhtml"> |
---|
7 | <head> |
---|
8 | <title>Replace Textarea by Code — CKEditor Sample</title> |
---|
9 | <meta content="text/html; charset=utf-8" http-equiv="content-type" /> |
---|
10 | <script type="text/javascript" src="../ckeditor_source.js"></script> |
---|
11 | <script src="sample.js" type="text/javascript"></script> |
---|
12 | <link href="sample.css" rel="stylesheet" type="text/css" /> |
---|
13 | </head> |
---|
14 | <body> |
---|
15 | <h1 class="samples"> |
---|
16 | CKEditor Sample — Replace Textarea Elements Using JavaScript Code |
---|
17 | </h1> |
---|
18 | <div class="description"> |
---|
19 | <p> |
---|
20 | This sample shows how to automatically replace all <code><textarea></code> elements |
---|
21 | with a CKEditor instance by using a JavaScript call. |
---|
22 | </p> |
---|
23 | <p> |
---|
24 | To replace a <code><textarea></code> element, place the following call at any point |
---|
25 | after the <code><textarea></code> element or inside a <code><script></code> element located |
---|
26 | in the <code><head></code> section of the page, in a <code>window.onload</code> event handler: |
---|
27 | </p> |
---|
28 | <pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>' );</pre> |
---|
29 | <p> |
---|
30 | Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of |
---|
31 | the <code><textarea></code> element to be replaced. |
---|
32 | </p> |
---|
33 | </div> |
---|
34 | |
---|
35 | <!-- This <div> holds alert messages to be display in the sample page. --> |
---|
36 | <div id="alerts"> |
---|
37 | <noscript> |
---|
38 | <p> |
---|
39 | <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript |
---|
40 | support, like yours, you should still see the contents (HTML data) and you should |
---|
41 | be able to edit it normally, without a rich editor interface. |
---|
42 | </p> |
---|
43 | </noscript> |
---|
44 | </div> |
---|
45 | <form action="sample_posteddata.php" method="post"> |
---|
46 | <p> |
---|
47 | <div id="editor"></div> |
---|
48 | |
---|
49 | |
---|
50 | <script type="text/javascript"> |
---|
51 | //<![CDATA[ |
---|
52 | var editor = CKEDITOR.appendTo( 'editor', {}, '' );//second is config, third is initial HTML |
---|
53 | |
---|
54 | editor.on('instanceReady', function(e){ |
---|
55 | e.editor.on('afterSetData', function(evt){ |
---|
56 | e.editor.focus(); |
---|
57 | }); |
---|
58 | e.editor.setData('<p>Some text</p><p> </p>'); |
---|
59 | }); |
---|
60 | |
---|
61 | //]]> |
---|
62 | </script> |
---|
63 | </p> |
---|
64 | |
---|
65 | <p> |
---|
66 | <input type="submit" value="Submit" /> |
---|
67 | </p> |
---|
68 | </form> |
---|
69 | </body> |
---|
70 | </html> |
---|