JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.1
[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-2010, 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 - 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>\r
16                 CKEditor Sample\r
17         </h1>\r
18         <!-- This <div> holds alert messages to be display in the sample page. -->\r
19         <div id="alerts">\r
20                 <noscript>\r
21                         <p>\r
22                                 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript\r
23                                 support, like yours, you should still see the contents (HTML data) and you should\r
24                                 be able to edit it normally, without a rich editor interface.\r
25                         </p>\r
26                 </noscript>\r
27         </div>\r
28         <form action="sample_posteddata.php" method="post">\r
29                 <p>\r
30                         <label for="editor1">\r
31                                 Editor 1:</label><br />\r
32                         <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
33                         <script type="text/javascript">\r
34                         //<![CDATA[\r
35 \r
36                                 // This call can be placed at any point after the\r
37                                 // <textarea>, or inside a <head><script> in a\r
38                                 // window.onload event handler.\r
39 \r
40                                 // Replace the <textarea id="editor"> with an CKEditor\r
41                                 // instance, using default configurations.\r
42                                 CKEDITOR.replace( 'editor1' );\r
43 \r
44                         //]]>\r
45                         </script>\r
46                 </p>\r
47                 <p>\r
48                         <label for="editor2">\r
49                                 Editor 2:</label><br />\r
50                         <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
51                         <script type="text/javascript">\r
52                         //<![CDATA[\r
53 \r
54                                 // This call can be placed at any point after the\r
55                                 // <textarea>, or inside a <head><script> in a\r
56                                 // window.onload event handler.\r
57 \r
58                                 // Replace the <textarea id="editor"> with an CKEditor\r
59                                 // instance, using default configurations.\r
60                                 CKEDITOR.replace( 'editor2' );\r
61 \r
62                         //]]>\r
63                         </script>\r
64                 </p>\r
65                 <p>\r
66                         <input type="submit" value="Submit" />\r
67                 </p>\r
68         </form>\r
69         <div id="footer">\r
70                 <hr />\r
71                 <p>\r
72                         CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>\r
73                 </p>\r
74                 <p id="copy">\r
75                         Copyright &copy; 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico\r
76                         Knabben. All rights reserved.\r
77                 </p>\r
78         </div>\r
79 </body>\r
80 </html>\r