X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_samples%2Freplacebycode.html;h=beb779e5e56837b8c198829b5bcca267beadf704;hb=refs%2Ftags%2Fv3.5.1;hp=bd3f54d4c400d2c8f7f4c332f6b249ba0b05b78e;hpb=9afde8772159bd3436f1f5b7862960307710ae5a;p=ckeditor.git diff --git a/_samples/replacebycode.html b/_samples/replacebycode.html index bd3f54d..beb779e 100644 --- a/_samples/replacebycode.html +++ b/_samples/replacebycode.html @@ -1,20 +1,37 @@ - Replace Textarea by Code - CKEditor Sample + Replace Textarea by Code — CKEditor Sample -

- CKEditor Sample +

+ CKEditor Sample — Replace Textarea Elements Using JavaScript Code

+
+

+ This sample shows how to automatically replace all <textarea> elements + with a CKEditor instance by using a JavaScript call. +

+

+ To replace a <textarea> element, place the following call at any point + after the <textarea> element or inside a <script> element located + in the <head> section of the page, in a window.onload event handler: +

+
CKEDITOR.replace( 'textarea_id' );
+

+ Note that textarea_id in the code above is the id attribute of + the <textarea> element to be replaced. +

+
+