Hi there,
I'm new to javascript so I have difficulties doing something I think should be simple: attach fckeditor to multiple textareas in a form. In the documentation there is no mention about it. Someone can point me to a tutorial?
Regards,
I'm new to javascript so I have difficulties doing something I think should be simple: attach fckeditor to multiple textareas in a form. In the documentation there is no mention about it. Someone can point me to a tutorial?
Regards,

Re: Multiple textareas problem
E.g. (replace all textareas with editors...):
window.onload = function() { for (var area in document.getElementsByTagName('TEXTAREA')) { var oFCKeditor = new FCKeditor( area.id ); if (oFCKeditor) { oFCKeditor.BasePath = "/fckeditor/" ; oFCKeditor.ReplaceTextarea() ; } } }