This page illustrates how to install multiple FCKEditors (with different settings) on one page.
Back to documentation/download
//# TEST PAGE FUNCTIONALITY
$(function(){
$.fck.path = '/fwx/inc/fck/';
$('#textarea1').fck({toolbar: 'Default', height: 200 });
$('#textarea2').fck({toolbar: 'Basic', height: 100, width:300 });
});