There is an existing CK editor folder in my project. How can I find out it's version? Is it documented?
try: var bodyAdd = CKEDITOR. instances['editor1']. getData();
CKEditor (formerly known as FCKeditor) is a WYSIWYG rich text editor which enables writing content directly inside of web pages or online applications. Its core code is written in JavaScript and it is developed by CKSource. CKEditor is available under open source and commercial licenses.
just make an alert as below in the config.js file, it gives the value
alert(CKEDITOR.version);
or you can see it directly in the file ckeditor_php4.php, for eg:
var $version = '3.6.3';
working demo :
alert(CKEDITOR.version); console.log("CKEDITOR.version ==",CKEDITOR.version);
<head> <meta charset="utf-8"> <title>CKEditor</title> <script src="https://cdn.ckeditor.com/4.11.4/standard/ckeditor.js"></script> </head> <body> <textarea id="editor1"></textarea> <script> CKEDITOR.replace( 'editor1' ); </script> </body>
I checked version 3.6 and version info is located f.e. in:
/ckeditor/CHANGES.html CKEditor Changelog CKEditor 3.6.6.1
4.X uses mark down file:
/ckeditor/CHANGES.md CKEditor 4 Changelog ==================== ## CKEditor 4.4.1
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With