From which file and how to connect CKeditor Basic? :)

    1 answer 1

    It is necessary to connect the file ckeditor.js, which lies in the root folder of the script. Next (in the simplest case) create a textarea with the name, ID (any) and class ckeditor

    CKEDITOR.replace(name, { toolbar : 'Basic' }); 

    In the config or any jsnike after connected CKeditor

    • Yeah ... Only I need Basic (Minimum set - there are only 6 buttons yet :)) - BomBom
    • To correct in a config. name - Your editor’s name (id) - knes