Welcome Guest, Not a member yet? Register   Sign In
Need to add Textarea with Visual Editor
#12

(This post was last modified: 10-30-2019, 12:06 PM by InsiteFX.)

If you need an editor download CKEditor it works with the textarea and only needs one thing to link it.

1) Include ckeditor.js in the head section of your code:

Code:
<!-- make sure the src path points to your copied ckeditor folder -->
<script src="ckeditor/ckeditor.js"></script>

2) Create a text area for the editor in the body section followed by your CKEditor instance:

Code:
<!-- creating a text area for my editor in the form -->
<textarea id="myeditor" name="myeditor"></textarea>

<!-- creating a CKEditor instance called myeditor -->
<script type="text/javascript">
    CKEDITOR.replace('myeditor');
</script>

Very easy to add it to CodeIgniter.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
RE: Need to add Textarea with Visual Editor - by InsiteFX - 10-30-2019, 12:06 PM



Theme © iAndrew 2016 - Forum software by © MyBB