chrisdegrote

Topic: Tiny MCE error with internet explorer

On my site I've found two errors (according to internet explorer) It works perfect on chrome, firefox, safari.

Before messing things up I would like to know what's the best fix for this problem. All help is greatly appreciated

1: Syntaxisfault
tiny_mce.js
code: 0
URI: http://wwwbaanict.com/js/tiny_mce/tiny_mce.js
Line 1 sign 1

2: tinyMCE is not defined
www.baanict.com/
code: 0
URI: http://www.baanict.com
line 344 sign 9

links

Re: Tiny MCE error with internet explorer

Hi,

Have you tried integrating tinyMce in your site at some point? Because I see you have the following code:

Code:

  <script type="text/javascript" src="http://www.baanict.com/js/tiny_mce/tiny_mce.js"></script>
    <script language="javascript" type="text/javascript">
        tinyMCE.init({
            mode : "textareas",
            editor_selector : "mceEditor",
            theme: "advanced",
            plugins: "advhr,advimage,table,emotions,media,insertdatetime,directionality",
            theme_advanced_toolbar_align: "left",
            theme_advanced_toolbar_location: "top",
            theme_advanced_buttons1: "bold,italic,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,fontsizeselect,separator,bullist,numlist,separator,link,unlink,separator,undo,redo",
            theme_advanced_buttons2: "",
            theme_advanced_buttons3: "",
            height: "500px",
            width: "420px"
        });
    </script>

in your source. You can comment it by placing between <!-- and -->

chrisdegrote

Re: Tiny MCE error with internet explorer

Thanx again for your fast and great respons!!big_smile