WYIWYG Editor on custom textarea
Hey,
Wondering if when I'm using CodeIgniters form builder if its possible to have the WYIWYG editor to work on a textarea?
EG:
<?php
$formContent = array(
'name' => 'content',
'id' => 'content',
'maxlength' => '255',
'size' => '300',
'style' => 'width:50%',
'class' => 'wysiwyg'
);
echo form_open_multipart();
echo form_textarea($formContent);
echo form_close();
?>
Using Fuel's form builder isn't possible as I have a custom HTML form field in the view.
Comments