I am using CKEditor in my web app and new to it. It seems my js file isn’t downloading with CKEditor, how to include external js files in CKEditor ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Configuration related js needs to be in
config.jsAll plugin related files go in the plugins
plugins/[plugin_name]/plugin.jsYou’ll need to add them to the config using extraPlugins
config.extraPlugins: 'plugin',If you want to do something else you can just load another .js
for example:
in customcode.js you can put your eventhandling and overrides