JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.6.3
[ckeditor.git] / _samples / replacebyclass.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 Textareas by Class Name &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 by Class Name\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                 of a given class with a CKEditor instance.\r
22         </p>\r
23         <p>\r
24                 To replace a <code>&lt;textarea&gt;</code> element, simply assign it the <code>ckeditor</code>\r
25                 class, as in the code below:\r
26         </p>\r
27         <pre class="samples">&lt;textarea <strong>class="ckeditor</strong>" name="editor1"&gt;&lt;/textarea&gt;</pre>\r
28         <p>\r
29                 Note that other <code>&lt;textarea&gt;</code> attributes (like <code>id</code> or <code>name</code>) need to be adjusted to your document.\r
30         </p>\r
31         </div>\r
32 \r
33         <!-- This <div> holds alert messages to be display in the sample page. -->\r
34         <div id="alerts">\r
35                 <noscript>\r
36                         <p>\r
37                                 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript\r
38                                 support, like yours, you should still see the contents (HTML data) and you should\r
39                                 be able to edit it normally, without a rich editor interface.\r
40                         </p>\r
41                 </noscript>\r
42         </div>\r
43         <form action="sample_posteddata.php" method="post">\r
44                 <p>\r
45                         <label for="editor1">\r
46                                 Editor 1:</label>\r
47                         <textarea class="ckeditor" 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
48                 </p>\r
49                 <p>\r
50                         <input type="submit" value="Submit" />\r
51                 </p>\r
52         </form>\r
53         <div id="footer">\r
54                 <hr />\r
55                 <p>\r
56                         CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>\r
57                 </p>\r
58                 <p id="copy">\r
59                         Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico\r
60                         Knabben. All rights reserved.\r
61                 </p>\r
62         </div>\r
63 </body>\r
64 </html>\r