When I CKEDITOR.replace(...), I am receiving an error in my Chrome Browser's Javascript Console as follows:
Does anyone know what may be causing this?
<head> must be a child of <html>. Content ignored.It only appears from within the Chrome browser; Firefox and MSIE do not complain.
Does anyone know what may be causing this?
Re: Chrome: <head> must be a child of <html>. Conten
Found it!
and 667 should be swapped which makes the right sequence
There is wrong HTML tag sequence in wysiwygarea plugin.
1. In source file: ckeditor/_source/plugins/wysiwygarea/plugin.js
lines 666
2. In minimized version: ckeditor/ckeditor.js
string
should be replaced to
Re: Chrome: <head> must be a child of <html>. Conten
Thanks for the patch.
I've filed http://dev.fckeditor.net/ticket/5637 to handle it.
Re: Chrome: <head> must be a child of <html>. Conten
The patch fixed the problem !
Thanks