Skip to main content
May 22, 2013
Question

Cftextarea with ie10 issue

  • May 22, 2013
  • 2 replies
  • 3558 views

Has ant one experienced cftextarea not displaying tool bar in ie 10.  Thanks in advance.

This topic has been closed for replies.

2 replies

Participating Frequently
May 24, 2013

Here is the solution.

You have to make the changes in de FCKEditor.js

http://http://kartiksehgal.wordpress.com/2012/11/16/fckeditor-bug-fix-for-ie10/

May 28, 2013

Link you provide in reply is broken. also what kind of chagnes I've to make in FCKEditor.

Broken link :-

http://http://kartiksehgal.wordpress.com/2012/11/16/fckeditor-bug-fix- for-ie10/

Thanks in advance.

Participating Frequently
May 29, 2013

IE 10 is the first browser where the major version number (before the dot) is in double digits.
Most scripts, including the one written for FCKEditor at the time had a browser detection regex pattern that expected only a single digit before the dot (see below)

var sBrowserVersion = navigator.appVersion.match(/MSIE (.\..)/)[1] ;

The following change will thankfully remediate the situation immediately.

var sBrowserVersion = navigator.appVersion.match(/MSIE ([\d.]+)/)[1] ;

Participating Frequently
May 24, 2013

I have the same problem but no answer. There is an solution with ajaxOnLoad(). Maybe someone can explane this solution?