homepage - http://ckeditor.com/demo
samples - https://github.com/ckeditor/ckeditor-sdk/tree/master/samples
SimpleUploads (file and images upload options)
http://ckeditor.com/addon/simpleuploads
file browser
using href="http://ckeditor.com/addon/filebrowser" target="_blank">http://ckeditor.com/addon/filebrowser</a>
howto
if this did work follow this guide http://handsomedogstudio.com/ckeditor-set-default-target-blank
samples - https://github.com/ckeditor/ckeditor-sdk/tree/master/samples
JavaScript:
<!DOCTYPE html>
<!--
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see license.html or http://sdk.ckeditor.com/license.html.
-->
<html>
<head>
<meta charset="utf-8">
<title>Classic Editor</title>
<link href="http://fonts.googleapis.com/css?family=Maven+Pro:700,500,400" rel="stylesheet">
//jQ only referenced for button events
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//cdn.ckeditor.com/4.5.1/standard/ckeditor.js"></script>
</head>
<body>
<textarea cols="80" id="editor1" name="editor1" rows="10" data-sample="1" data-sample-short>
[SIZE=7][img]assets/sample.jpg[/img] Apollo 11[/SIZE]
[B]Apollo 11[/B] was the spaceflight that landed the first humans, Americans [url='http://en.wikipedia.org/wiki/Neil_Armstrong']Neil Armstrong[/url] and
[url='http://en.wikipedia.org/wiki/Buzz_Aldrin']Buzz Aldrin[/url], on the Moon on July 20, 1969, at 20:18 UTC. Armstrong became the first to step onto the lunar surface 6 hours
later on July 21 at 02:56 UTC.
Armstrong spent about [S]three and a half[/S] two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected 47.5 pounds (21.5kg) of lunar
material for return to Earth. A third member of the mission, [url='http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)']Michael Collins[/url], piloted the
[url='http://en.wikipedia.org/wiki/Apollo_Command/Service_Module']command[/url] spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to
Earth.
</textarea>
<br/><button id="test">Set Value</button><br/>
<button id="test2">Get Value</button>
<script>
CKEDITOR.replace( 'editor1', {
height: 260
} );
</script>
<!-- <script data-sample="2">
CKEDITOR.replace( 'editor2', {
height: 260,
/* Default CKEditor styles are included as well to avoid copying default styles. */
contentsCss: [ '../vendor/ckeditor/contents.css', 'assets/css/classic.css' ]
} );
</script>-->
<script>
$('#test').on('click', function(e) {
e.preventDefault();
//http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#setData
CKEDITOR.instances.editor1.setData( '
This is the editor data.
' );
});
$('#test2').on('click', function(e) {
e.preventDefault();
alert(CKEDITOR.instances.editor1.getData());
});
</script>
</body>
</html>
SimpleUploads (file and images upload options)
http://ckeditor.com/addon/simpleuploads
file browser
using href="http://ckeditor.com/addon/filebrowser" target="_blank">http://ckeditor.com/addon/filebrowser</a>
howto
JavaScript:
[SIZE=6]Set link default target to new window (_blank)[/SIZE]
Edit your ckeditor/plugins/link/dialogs/link.js file, replace the
[CODE=javascript]
"default":"notSet"
with
"default":"_blank"
if this did work follow this guide http://handsomedogstudio.com/ckeditor-set-default-target-blank