I deployed my applicaton and ckeditor3 on tomcat6.
It works on IE and Chrome, but dosen't work in Firefox, even the samples of ckeditor dosen't work too.
But if I deploy Ckeditor in another appliacton, it works in firefox.
Very strange! I found "CKEditor is undefined" in firefox.
It works on IE and Chrome, but dosen't work in Firefox, even the samples of ckeditor dosen't work too.
But if I deploy Ckeditor in another appliacton, it works in firefox.
Very strange! I found "CKEditor is undefined" in firefox.

Re: CKEditor dosen't work in firefox
Below is the filter.
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
Re: CKEditor dosen't work in firefox
Looks like that struts2 filter prevent ckeditor.js.
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>*.action</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>*.jsp</url-pattern>
</filter-mapping>