jQuery FCKEditor Plugin

Multiple Editors Test

This page illustrates how to install multiple FCKEditors (with different settings) on one page.

Back to documentation/download


textarea1

textarea2

The code:

//# TEST PAGE FUNCTIONALITY
$(function(){
 $.fck.path = '/fwx/inc/fck/';
 $('#textarea1').fck({toolbar: 'Default', height: 200 });
 $('#textarea2').fck({toolbar: 'Basic', height: 100, width:300 });
});