JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.1
[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-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>jQuery adapter - CKEditor Sample</title>\r
9         <meta content="text/html; charset=utf-8" http-equiv="content-type" />\r
10         <script type="text/javascript" src="http://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>\r
38                 CKEditor Sample\r
39         </h1>\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         <!-- This <fieldset> holds the HTML that you will usually find in your\r
51              pages. -->\r
52         <form action="sample_posteddata.php" method="post">\r
53         <p>\r
54                 <label for="editor1">\r
55                         Editor 1:</label><br />\r
56                 <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
57         </p>\r
58         <p>\r
59                 <input type="submit" value="Submit" />\r
60         </p>\r
61         </form>\r
62         <div id="footer">\r
63                 <hr />\r
64                 <p>\r
65                         CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>\r
66                 </p>\r
67                 <p id="copy">\r
68                         Copyright &copy; 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico\r
69                         Knabben. All rights reserved.\r
70                 </p>\r
71         </div>\r
72 </body>\r
73 </html>\r