JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.5.4
[ckeditor.git] / _samples / placeholder.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-2011, 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>Placeholder Plugin &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; Using the Placeholder Plugin\r
17         </h1>\r
18         <div class="description">\r
19         <p>\r
20                 This sample shows how to configure CKEditor instances to use the\r
21                 <strong>Placeholder</strong> plugin that lets you insert read-only elements\r
22                 into your content. To enter and modify read-only text, use the\r
23                 <strong>Create Placeholder</strong> button and its matching dialog window.\r
24         </p>\r
25         <p>\r
26                 To add a CKEditor instance that uses the <code>placeholder</code> plugin and a related\r
27                 <strong>Create Placeholder</strong> toolbar button, insert the following JavaScript\r
28                 call to your code:\r
29         </p>\r
30         <pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',\r
31         {\r
32                 <strong>extraPlugins : 'placeholder',</strong>\r
33                 toolbar : [ [ 'Source', 'Bold' ], [<strong>'CreatePlaceholder'</strong>] ]\r
34         });</pre>\r
35         <p>\r
36                 Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of\r
37                 the <code>&lt;textarea&gt;</code> element to be replaced with CKEditor.\r
38         </p>\r
39         </div>\r
40         <!-- This <div> holds alert messages to be display in the sample page. -->\r
41         <div id="alerts">\r
42                 <noscript>\r
43                         <p>\r
44                                 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript\r
45                                 support, like yours, you should still see the contents (HTML data) and you should\r
46                                 be able to edit it normally, without a rich editor interface.\r
47                         </p>\r
48                 </noscript>\r
49         </div>\r
50         <form action="sample_posteddata.php" method="post">\r
51                 <p>\r
52                         <label for="editor1">\r
53                                 CKEditor using the <code>placeholder</code> plugin with its default configuration:</label>\r
54                         <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is a [[sample placeholder]]. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;. &lt;/p&gt;</textarea>\r
55                         <script type="text/javascript">\r
56                         //<![CDATA[\r
57 \r
58                                 CKEDITOR.replace( 'editor1', {\r
59                                         extraPlugins : 'placeholder',\r
60                                         toolbar : [ [ 'Source', 'CreatePlaceholder' ] ]\r
61                                 });\r
62 \r
63                         //]]>\r
64                         </script>\r
65                 </p>\r
66                 <p>\r
67                         <input type="submit" value="Submit" />\r
68                 </p>\r
69         </form>\r
70         <div id="footer">\r
71                 <hr />\r
72                 <p>\r
73                         CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>\r
74                 </p>\r
75                 <p id="copy">\r
76                         Copyright &copy; 2003-2011, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico\r
77                         Knabben. All rights reserved.\r
78                 </p>\r
79         </div>\r
80 </body>\r
81 </html>\r