I am using Ckeditor in codeigniter.I need multiple ckeditor instances on same form page but it is not working.Below is my code
<div class="form-group">
<?php echo form_label('Short Description','',array('class'=> "col-sm-2 control-label")); ?>
<div class="col-sm-8">
<?php echo $this->ckeditor->editor("short_desc",set_value('short_desc'));?>
</div>
</div>
<div class="form-group">
<?php echo form_label('Description','',array('class'=> "col-sm-2 control-label")); ?>
<div class="col-sm-8">
<?php echo $this->ckeditor->editor("description",set_value('description'));?>
</div>
</div>
while it is loading ckeditor for first textarea,it it not working for second one.