My, my, I have been banging my head with this for 2 hours before I finally got it working.
I use TinyMCE from the frontend with the FrontEndDocumentManager snippet (aka FDM), and everything works fine.. except for IE that is ! The strange thing is that TinyMCE worked just fine with IE6 and IE7 from the manager. The problem only occured on the frontend.
I have used the code provided by Soda to use TinyMCE for my textareas with the FDM forms :
<script language="javascript" type="text/javascript" src="assets/plugins/tinymce308/jscripts/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
// Configuration detail check http://wiki.moxiecode.com/index.php/TinyMCE:Configuration
tinyMCE.init({
theme : "simple",
language : "fr",
mode : "textareas",
});
</script>
I did get the following error from the infamous browser : "
Expected identifier, string or number" which as you will see returns quite a bit of posts but no real solution that I could find. My error was to look for this error and add TinyMCE to the search string. Widening the search helped greatly and I found here what saved me from going nutso :
http://cow.neondragon.net/index.php/1404-Internet-Explorer-Javascript-Errors
Kudos for that !
But for it to work with IE you have to ommit the comma of the last item [tt]mode : "textareas"[/tt]
Thought I would share for those of you who need TinyMCE frontend