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-2009, 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 | <script type="text/javascript" src="/ckeditor/ckeditor_source.js"></script> |
---|
10 | </head> |
---|
11 | <body> |
---|
12 | <p> |
---|
13 | <label for="editor1"> |
---|
14 | Editor 1:</label><br /> |
---|
15 | <textarea id="editor1" name="editor1" rows="10" cols="80"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea> |
---|
16 | <script type="text/javascript"> |
---|
17 | //<![CDATA[ |
---|
18 | |
---|
19 | CKEDITOR.replace( 'editor1' ); |
---|
20 | |
---|
21 | //]]> |
---|
22 | </script> |
---|
23 | </p> |
---|
24 | <p> |
---|
25 | <label for="editor2"> |
---|
26 | Editor 2:</label><br /> |
---|
27 | <textarea id="editor2" name="editor2" rows="10" cols="80"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea> |
---|
28 | <script type="text/javascript"> |
---|
29 | //<![CDATA[ |
---|
30 | |
---|
31 | CKEDITOR.replace( 'editor2' ); |
---|
32 | |
---|
33 | //]]> |
---|
34 | </script> |
---|
35 | </p> |
---|
36 | <p> |
---|
37 | <label for="editor3"> |
---|
38 | Editor 3:</label><br /> |
---|
39 | <textarea id="editor3" name="editor3" rows="10" cols="80"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea> |
---|
40 | <script type="text/javascript"> |
---|
41 | //<![CDATA[ |
---|
42 | |
---|
43 | CKEDITOR.replace( 'editor3' ); |
---|
44 | |
---|
45 | //]]> |
---|
46 | </script> |
---|
47 | </p> |
---|
48 | <p> |
---|
49 | <label for="editor4"> |
---|
50 | Editor 4:</label><br /> |
---|
51 | <textarea id="editor4" name="editor4" rows="10" cols="80"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea> |
---|
52 | <script type="text/javascript"> |
---|
53 | //<![CDATA[ |
---|
54 | |
---|
55 | CKEDITOR.replace( 'editor4' ); |
---|
56 | |
---|
57 | //]]> |
---|
58 | </script> |
---|
59 | </p> |
---|
60 | </body> |
---|
61 | </html> |
---|