JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.6.3
[ckeditor.git] / _samples / jqueryadapter.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>jQuery Adapter &mdash; CKEditor Sample</title>\r
9         <meta content="text/html; charset=utf-8" http-equiv="content-type" />\r
10         <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>\r
11         <script type="text/javascript" src="../ckeditor.js"></script>\r
12         <script type="text/javascript" src="../adapters/jquery.js"></script>\r
13         <script src="sample.js" type="text/javascript"></script>\r
14         <link href="sample.css" rel="stylesheet" type="text/css" />\r
15         <script type="text/javascript">\r
16         //<![CDATA[\r
17 \r
18 $(function()\r
19 {\r
20         var config = {\r
21                 toolbar:\r
22                 [\r
23                         ['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink'],\r
24                         ['UIColor']\r
25                 ]\r
26         };\r
27 \r
28         // Initialize the editor.\r
29         // Callback function can be passed and executed after full instance creation.\r
30         $('.jquery_ckeditor').ckeditor(config);\r
31 });\r
32 \r
33         //]]>\r
34         </script>\r
35 </head>\r
36 <body>\r
37         <h1 class="samples">\r
38                 CKEditor Sample &mdash; Using jQuery Adapter\r
39         </h1>\r
40         <div class="description">\r
41         <p>\r
42                 This sample shows how to load CKEditor and configure it using the\r
43                 <a class="samples" href="http://docs.cksource.com/CKEditor_3.x/Developers_Guide/jQuery_Adapter">jQuery adapter</a>.\r
44                 In this case the jQuery adapter is responsible for transforming a <code>&lt;textarea&gt;</code>\r
45                 element into a CKEditor instance and setting the configuration of the toolbar.\r
46         </p>\r
47         <p>\r
48                 CKEditor instance with custom configuration set in jQuery can be inserted with the\r
49                 following JavaScript code:\r
50         </p>\r
51         <pre class="samples">$(function()\r
52 {\r
53         var config = {\r
54                 skin:'v2'\r
55         };\r
56 \r
57         $('.<em>textarea_class</em>').ckeditor(config);\r
58 });</pre>\r
59         <p>\r
60         Note that <code><em>textarea_class</em></code> in the code above is the\r
61         <code>class</code> attribute of the <code>&lt;textarea&gt;</code> element to be replaced with\r
62         CKEditor. Any other jQuery selector can be used to match the target element.\r
63         </p>\r
64         </div>\r
65 \r
66         <!-- This <div> holds alert messages to be display in the sample page. -->\r
67         <div id="alerts">\r
68                 <noscript>\r
69                         <p>\r
70                                 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript\r
71                                 support, like yours, you should still see the contents (HTML data) and you should\r
72                                 be able to edit it normally, without a rich editor interface.\r
73                         </p>\r
74                 </noscript>\r
75         </div>\r
76         <!-- This <fieldset> holds the HTML that you will usually find in your\r
77              pages. -->\r
78         <form action="sample_posteddata.php" method="post">\r
79         <p>\r
80                 <label for="editor1">\r
81                         Editor 1:</label>\r
82                 <textarea class="jquery_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
83         </p>\r
84         <p>\r
85                 <input type="submit" value="Submit" />\r
86         </p>\r
87         </form>\r
88         <div id="footer">\r
89                 <hr />\r
90                 <p>\r
91                         CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>\r
92                 </p>\r
93                 <p id="copy">\r
94                         Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico\r
95                         Knabben. All rights reserved.\r
96                 </p>\r
97         </div>\r
98 </body>\r
99 </html>\r