I'm using the replaceTextarea() function and I definitely have a textarea with the correct id AND name (ud_description)!
I read all of the other posts with similar problem but they failed to assign an id to the textarea that matches the declared name of the FCKeditor.
The information IS saved but the error message is confusing.
Any idea what I'm doing wrong or how to fix it?
<head> <script type="text/javascript" src="fckeditor/fckeditor.js"></script> <script type="text/javascript"> window.onload = function() { var oFCKeditor = new FCKeditor( 'ud_description' ) ; oFCKeditor.BasePath = "/fckeditor/" ; oFCKeditor.ReplaceTextarea() ; oFCKeditor.Height = '350' ; } </head>
<body> (other code) <textarea name="ud_description" id="ud_description" cols="60" rows="30" style="width:99%;"><?php echo $description; ?></textarea> (other code)
I read all of the other posts with similar problem but they failed to assign an id to the textarea that matches the declared name of the FCKeditor.
The information IS saved but the error message is confusing.
Any idea what I'm doing wrong or how to fix it?
Re: Error: The TEXTAREA with id or name set to "__" wa