X-Git-Url: https://scm.cri.ensmp.fr/git/ckeditor.git/blobdiff_plain/871bad8291b6dbc29d489d95d185458caab25158..14d450d78a2d67ec1decd64c928151851961dd36:/_samples/jqueryadapter.html diff --git a/_samples/jqueryadapter.html b/_samples/jqueryadapter.html deleted file mode 100644 index 2772878..0000000 --- a/_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. -

-
- - -
- -
- -
-

- - -

-

- -

-
- - -