http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd
http://www.w3.org/1999/xhtml
http://sethtrain.gotdns.com/
http://www.lattelayouts.com
http://validator.w3.org/check/referer
http://jigsaw.w3.org/css-validator/check/referer
http://www.lattelayouts.comhttp://www.htmlarea.com
http://sethtrain.gotdns.com/cms/fckedit ... fault.html

RE: Can't seem to get it to work...
I haven't used the replace textarea method myself, but I'll try and give you some hints:
1) If you look at the sample02.html code you'll see that the basepath is defined *before* your call to the replace textarea function. Would this have been done for a reason ? I should think so, so try this:
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'body' ) ;
oFCKeditor.BasePath = "fckeditor/" ;
oFCKeditor.ReplaceTextarea() ;
}
</script>
2) As I mentioned in my other post (did you read it ?): DO NOT CALL THE SUBMIT BUTTON "SUBMIT".
I completely agree that this is very confusing and a very difficult one to find out.
However if you would have done a search in the forum on "toolbar" (as in "toolbar not showing") you *would* have found that answer as I posted it only a week or two ago after *I* found it searching through all the information here, so even before my post on it, the answer *was* already available.
So change:
<input type="submit" name="submit" value="Submit">
to:
<input type="submit" name="ivelearnedtoread" value="Submit">
(or whatever else you want to call it)
3) Althought I don't know whether it will make a difference or whether it even matters, I consider it good practice to *never* name or id any part of code by a name which could be confusing... so calling your textarea "body" while an important HTML tag is also called body *could* be causing problems.
Do let us know whether these comments helped.
RE: Can't seem to get it to work...
Thanks again,
Sethtrain
RE: Can't seem to get it to work...
I prefer FF myself as well, but well, the customer I've been implementing it for prefers IE.. silly people...
I do use the IFRAME method though, never even tried the textarea replace one. IFRAME works fine in FF.
RE: Can't seem to get it to work...
Thanks for your help,
Sethtrain
RE: Can't seem to get it to work...
Glad to have been of help.
Quote: "It has something to do with my release of FF."
Please post what other problem you found and in which release and which release solved it, so that others can benefit from your experience.
Quote: "except for my position of the form, which has something to do with IE standards"
Again, please post your findings so other people can benefit from them.
Thx, Jrf
RE: Can't seem to get it to work...