X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fckeditor%2Fsamples%2Fold%2Fappendto.html;fp=js%2Fckeditor%2Fsamples%2Fold%2Fappendto.html;h=dbabf750aba5a092c64581d5ba369112bcd034d8;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hp=0000000000000000000000000000000000000000;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44;p=kivitendo-erp.git diff --git a/js/ckeditor/samples/old/appendto.html b/js/ckeditor/samples/old/appendto.html new file mode 100644 index 000000000..dbabf750a --- /dev/null +++ b/js/ckeditor/samples/old/appendto.html @@ -0,0 +1,59 @@ + + + + + + Append To Page Element Using JavaScript Code — CKEditor Sample + + + + +

+ CKEditor Samples » Append To Page Element Using JavaScript Code +

+
+ This sample is not maintained anymore. Check out the brand new samples in CKEditor SDK. +
+
+
+

+ The CKEDITOR.appendTo() method serves to to place editors inside existing DOM elements. Unlike CKEDITOR.replace(), + a target container to be replaced is no longer necessary. A new editor + instance is inserted directly wherever it is desired. +

+
CKEDITOR.appendTo( 'container_id',
+	{ /* Configuration options to be used. */ }
+	'Editor content to be used.'
+);
+
+ +
+
+ + +