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