Ticket #7153: 7153.html

File 7153.html, 2.8 KB (added by Garry Yao, 13 years ago)
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<!--
3Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
4For licensing, see LICENSE.html or http://ckeditor.com/license
5-->
6<html xmlns="http://www.w3.org/1999/xhtml">
7<head>
8        <title>Replace Textareas by Class Name &mdash; CKEditor Sample</title>
9        <meta content="text/html; charset=utf-8" http-equiv="content-type" />
10        <!-- CKReleaser %REMOVE_LINE%
11        <script type="text/javascript" src="../ckeditor.js"></script>
12        CKReleaser %REMOVE_START% -->
13        <!-- CKReleaser %REMOVE_END% -->
14        <script src="sample.js" type="text/javascript"></script>
15        <link href="sample.css" rel="stylesheet" type="text/css" />
16</head>
17<body>
18        <h1 class="samples">
19                CKEditor Sample &mdash; Replace Textarea Elements by Class Name
20        </h1>
21        <div class="description">
22        <p>
23                This sample shows how to automatically replace all <code>&lt;textarea&gt;</code> elements
24                of a given class with a CKEditor instance.
25        </p>
26        <p>
27                To replace a <code>&lt;textarea&gt;</code> element, simply assign it the <code>ckeditor</code>
28                class, as in the code below:
29        </p>
30        <pre class="samples">&lt;textarea <strong>class="ckeditor</strong>" name="editor1"&gt;&lt;/textarea&gt;</pre>
31        <p>
32                Note that other <code>&lt;textarea&gt;</code> attributes (like <code>id</code> or <code>name</code>) need to be adjusted to your document.
33        </p>
34        </div>
35
36        <!-- This <div> holds alert messages to be display in the sample page. -->
37        <div id="alerts">
38                <noscript>
39                        <p>
40                                <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
41                                support, like yours, you should still see the contents (HTML data) and you should
42                                be able to edit it normally, without a rich editor interface.
43                        </p>
44                </noscript>
45        </div>
46        <form action="sample_posteddata.php" method="post">
47                <p>
48                        <label for="editor1">
49                                Editor 1:</label>
50                        <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>
51                </p>
52                <p>
53                        <input type="submit" value="Submit" />
54                </p>
55        </form>
56        <div id="footer">
57                <hr />
58                <p>
59                        CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
60                </p>
61                <p id="copy">
62                        Copyright &copy; 2003-2011, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
63                        Knabben. All rights reserved.
64                </p>
65        </div>
66        <script>
67                var head = document.getElementsByTagName( 'head' )[0];
68                var script = document.createElement( 'script' );
69                script.type = 'text/javascript';
70                script.src = '../ckeditor_source.js';
71                head.appendChild( script );
72        </script>
73</body>
74</html>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy