Hello,
I have the following HTML page, and FCKeditor does not render at all in IE7.
Yet, when using the FCKeditor plugin as a module for the Drupal content management system, it works perfectly fine in IE7.
I have the following HTML page, and FCKeditor does not render at all in IE7.
<html>
<head>
<title>Something</title>
<script type="text/javascript" src="scripts/fckeditor/fckeditor.js" ></script>
<script type="text/javascript">
window.onload = function() {
var editor = new FCKeditor("test") ;
editor.BasePath = "scripts/fckeditor/";
editor.ReplaceTextarea() ;
};
</script>
</head>
<body>
<form>
<textarea id="test"></textarea>
</form>
</body>
</html>Yet, when using the FCKeditor plugin as a module for the Drupal content management system, it works perfectly fine in IE7.
