FCKEditor doesn\'t appear in IE10. When I go to IE development tools and switch browser mode to IE9, FCKEditor works all right. But when I put meta tag for emulate IE9:
This is what helped me:
.
and find & replace the regex in ckeditor JS codes:
replace /MSIE (\d+)/ with /MSIE ([\d.]+)/
/MSIE (\d+)/
/MSIE ([\d.]+)/
Most importantly, dont forget to Close the browser/tab and open the site again. Otherwise this meta tag wont work !