Iron Man Day 07 - CKEditor

by Sheng Huang Huang

HTML

<script src="https://cdn.ckeditor.com/4.6.0/standard/ckeditor.js"></script>
<textarea name="editorDemo">
  <h2>CKEditor Demo</h2>
  <hr />
  <p>使用CKEditor,人生變得好簡單啊!</p>
</textarea>
<button id="alertContent">取得HTML</button>

JavaScript

var editor = CKEDITOR.replace('editorDemo');

$('#alertContent').click(function(){
 	// CKEDITOR.instances.editorDemo.updateElement();
	console.log($('textarea[name=editorDemo]').val());
	console.log(CKEDITOR.instances.editorDemo.getData());
});