tinyMCE Javascript Error In IE
All was fine in firefox, but when pulled up in IE 6 & 7, would error with a nifty message. Of course IE's error message doesn't help ("expected identifier string or number") at all, but eventually found the cause.
Turns out, IE can't handle an extra comma in the config section.
tinyMCE.init({
mode : "textareas",
theme : "advanced",
theme_advanced_toolbar_location : "top",
});
See the comma at the end of the last line? It's the culprit. Remove it.
tinyMCE.init({
mode : "textareas",
theme : "advanced",
theme_advanced_toolbar_location : "top"
});
All is well again.

