I'm using CLEditor as an RTE and it works perfectly except for in IE 8, the error that is produced is:
SCRIPT65535: Unexpected call to method or property access.
jquery.cleditor.js, line 1027 character 7
SCRIPT65535: Unexpected call to method or property access.
jquery.cleditor.js, line 1027 character 7
The line to which it is referring is the line editor.range[0].select();
in the following function:
function restoreRange(editor) {
if (ie && editor.range)
editor.range[0].select();
}
I've had a look around for similar questions but none of them have this kind of context. Any help appreciated.