JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.6.3
[ckeditor.git] / _samples / replacebycode.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
2 <!--\r
3 Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.\r
4 For licensing, see LICENSE.html or http://ckeditor.com/license\r
5 -->\r
6 <html xmlns="http://www.w3.org/1999/xhtml">\r
7 <head>\r
8         <title>Replace Textarea by Code &mdash; CKEditor Sample</title>\r
9         <meta content="text/html; charset=utf-8" http-equiv="content-type" />\r
10         <script type="text/javascript" src="../ckeditor.js"></script>\r
11         <script src="sample.js" type="text/javascript"></script>\r
12         <link href="sample.css" rel="stylesheet" type="text/css" />\r
13 </head>\r
14 <body>\r
15         <h1 class="samples">\r
16                 CKEditor Sample &mdash; Replace Textarea Elements Using JavaScript Code\r
17         </h1>\r
18         <div class="description">\r
19         <p>\r
20                 This sample shows how to automatically replace all <code>&lt;textarea&gt;</code> elements\r
21                 with a CKEditor instance by using a JavaScript call.\r
22         </p>\r
23         <p>\r
24                 To replace a <code>&lt;textarea&gt;</code> element, place the following call at any point\r
25                 after the <code>&lt;textarea&gt;</code> element or inside a <code>&lt;script&gt;</code> element located\r
26                 in the <code>&lt;head&gt;</code> section of the page, in a <code>window.onload</code> event handler:\r
27         </p>\r
28         <pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>' );</pre>\r
29         <p>\r
30                 Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of\r
31                 the <code>&lt;textarea&gt;</code> element to be replaced.\r
32         </p>\r
33         </div>\r
34 \r
35         <!-- This <div> holds alert messages to be display in the sample page. -->\r
36         <div id="alerts">\r
37                 <noscript>\r
38                         <p>\r
39                                 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript\r
40                                 support, like yours, you should still see the contents (HTML data) and you should\r
41                                 be able to edit it normally, without a rich editor interface.\r
42                         </p>\r
43                 </noscript>\r
44         </div>\r
45         <form action="sample_posteddata.php" method="post">\r
46                 <p>\r
47                         <label for="editor1">\r
48                                 Editor 1:</label>\r
49                         <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
50                         <script type="text/javascript">\r
51                         //<![CDATA[\r
52 \r
53                                 // This call can be placed at any point after the\r
54                                 // <textarea>, or inside a <head><script> in a\r
55                                 // window.onload event handler.\r
56 \r
57                                 // Replace the <textarea id="editor"> with an CKEditor\r
58                                 // instance, using default configurations.\r
59                                 CKEDITOR.replace( 'editor1' );\r
60 \r
61                         //]]>\r
62                         </script>\r
63                 </p>\r
64                 <p>\r
65                         <label for="editor2">\r
66                                 Editor 2:</label>\r
67                         <textarea cols="80" id="editor2" name="editor2" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
68                         <script type="text/javascript">\r
69                         //<![CDATA[\r
70 \r
71                                 // This call can be placed at any point after the\r
72                                 // <textarea>, or inside a <head><script> in a\r
73                                 // window.onload event handler.\r
74 \r
75                                 // Replace the <textarea id="editor"> with an CKEditor\r
76                                 // instance, using default configurations.\r
77                                 CKEDITOR.replace( 'editor2' );\r
78 \r
79                         //]]>\r
80                         </script>\r
81                 </p>\r
82                 <p>\r
83                         <input type="submit" value="Submit" />\r
84                 </p>\r
85         </form>\r
86         <div id="footer">\r
87                 <hr />\r
88                 <p>\r
89                         CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>\r
90                 </p>\r
91                 <p id="copy">\r
92                         Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico\r
93                         Knabben. All rights reserved.\r
94                 </p>\r
95         </div>\r
96 </body>\r
97 </html>\r