e.g. <script type="text/javascript" src="scripts/jquery.js"></script>
You then need to instance the jQuery adapter for CKEditor
e.g. <script type="text/javascript" src="ckeditor/adapters/jquery.js"></script>
Note you can use the adapter found in the CKeditor 3 version. I have no idea where to find the adapter for version 4. You can then call CKEditor using jquery:
e.g. $('#body').ckeditor( function() { }, {}); (in this example we are replacing a textarea with ID: body with a CKEditor instance.
You need to instance jQuery
You need to instance jQuery in your script
e.g. <script type="text/javascript" src="scripts/jquery.js"></script>
You then need to instance the jQuery adapter for CKEditor
e.g. <script type="text/javascript" src="ckeditor/adapters/jquery.js"></script>
Note you can use the adapter found in the CKeditor 3 version. I have no idea where to find the adapter for version 4. You can then call CKEditor using jquery:
e.g. $('#body').ckeditor( function() { }, {}); (in this example we are replacing a textarea with ID: body with a CKEditor instance.