I am having a little trouble with getting the editor to load when I dynamically create the text area. In the documentation, it says that I need to provide it a textarea id, but I just want it to load for all textareas. I am loading the content through Ajax and can't give a specific id. Is there any way around this.
Thank you in advance
Thank you in advance

Re: Loading the textarea ID dynamically
$("textarea").each(function(count){
var textarea_id = $(this).attr("id");
var oFCKeditor = new FCKeditor(textarea_id);
oFCKeditor.BasePath = "/javascript/fckeditor/" ;
oFCKeditor.ReplaceTextarea() ;
});
It works great!!