I\'m using CKEDITOR in inline mode with multiple editors per page. To create them, I use tags in the HTML and then run a script that executes
After more research, I discovered that I can set configuration options within the CKEDITOR.inline
method call. Here's a working version of the script:
$(function () {
$("textarea").each(function () {
CKEDITOR.inline($(this)[0], {
filebrowserImageUploadUrl: "/new/url/to/be/executed"
});
});
});