1 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
4 For licensing, see LICENSE.html or http://ckeditor.com/license
6 <html xmlns=
"http://www.w3.org/1999/xhtml">
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">
23 ['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink'],
28 // Initialize the editor.
29 // Callback function can be passed and executed after full instance creation.
30 $('.jquery_ckeditor').ckeditor(config);
38 CKEditor Sample
— Using jQuery Adapter
40 <div class=
"description">
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.
48 CKEditor instance with custom configuration set in jQuery can be inserted with the
49 following JavaScript code:
51 <pre class=
"samples">$(function()
57 $('.
<em>textarea_class
</em>').ckeditor(config);
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.
66 <!-- This <div> holds alert messages to be display in the sample page. -->
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.
76 <!-- This <fieldset> holds the HTML that you will usually find in your
78 <form action=
"sample_posteddata.php" method=
"post">
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>
85 <input type=
"submit" value=
"Submit" />
91 CKEditor - The text editor for the Internet -
<a class=
"samples" href=
"http://ckeditor.com/">http://ckeditor.com
</a>
94 Copyright
© 2003-
2011,
<a class=
"samples" href=
"http://cksource.com/">CKSource
</a> - Frederico
95 Knabben. All rights reserved.