1

Topic: Not working with IE9

Hi everyone,

I have recently upgraded my browser to IE9 and TinyMCE is no longer working. The tool bar is correctly displayed, but I can not interact with text. When clicking on the bold, paragraph, paste, etc. icons nothing happens.

No problem with the other browsers. I'm using the latest version of TinyMCE.

Here is the code that I'm currently using:

<script type="text/javascript">
tinyMCE.init({
// General options
    mode : "exact",
    elements : "contenu,agenda",
    theme : "advanced",
        plugins : "safari,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,imagemanager,filemanager",
    //entity_encoding : "named",
    content_css : "css/cms.css",
    inline_styles : false,

    // Theme options
    theme_advanced_buttons1 : "bold,italic,underline,|,styleselect,formatselect",
    theme_advanced_buttons2 : "cut,copy,pastetext,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code",
    theme_advanced_buttons3 : "tablecontrols,removeformat,|,spellchecker,|,cite,abbr,acronym",
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_statusbar_location : "bottom",
    theme_advanced_blockformats : "Pas de style=p,Titre 1=h2,Titre 2=h3,Titre 3=h4,Titre 4=h5,Titre 5=h6",
    theme_advanced_resizing : false
});
</script>

Thank you very much in advance.

Remy