TinyMCE not working in ie with this code
        Posted  
        
            by jasmine
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by jasmine
        
        
        
        Published on 2010-05-02T18:55:32Z
        Indexed on 
            2010/05/02
            19:18 UTC
        
        
        Read the original article
        Hit count: 273
        
tinymce
|JavaScript
TinyMCE not working in ie with this js code. How can I solve the problem. Thanks in advance
<script type="text/javascript">
      tinyMCE.init({
        theme : "advanced",
        mode : "textareas",
        plugin : "tinyBrowser, media",
        file_browser_callback : "tinyBrowser",
    });
    function toggleEditor(id) {
        if (!tinyMCE.get(id))
            tinyMCE.execCommand("mceAddControl", false, id);
        else
            tinyMCE.execCommand("mceRemoveControl", false, id);
    }
    </script>
© Stack Overflow or respective owner