X-Git-Url: https://scm.cri.ensmp.fr/git/ckeditor.git/blobdiff_plain/e11f66eb655db8339a2d9b197b89f6c3b26099e1..579f65bc95a773bc6f8da75f6849ea49f365368b:/skins/ckeditor/_samples/jqueryadapter.html diff --git a/skins/ckeditor/_samples/jqueryadapter.html b/skins/ckeditor/_samples/jqueryadapter.html deleted file mode 100644 index 2772878..0000000 --- a/skins/ckeditor/_samples/jqueryadapter.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - jQuery Adapter — CKEditor Sample - - - - - - - - - -

- CKEditor Sample — Using jQuery Adapter -

-
-

- This sample shows how to load CKEditor and configure it using the - jQuery adapter. - In this case the jQuery adapter is responsible for transforming a <textarea> - element into a CKEditor instance and setting the configuration of the toolbar. -

-

- CKEditor instance with custom configuration set in jQuery can be inserted with the - following JavaScript code: -

-
$(function()
-{
-	var config = {
-		skin:'v2'
-	};
-
-	$('.textarea_class').ckeditor(config);
-});
-

- Note that textarea_class in the code above is the - class attribute of the <textarea> element to be replaced with - CKEditor. Any other jQuery selector can be used to match the target element. -

-
- - -
- -
- -
-

- - -

-

- -

-
- - -