ckeditorTool.js 270 B

123456789101112
  1. $(function() {
  2. $("#btn_sub").click(function() {
  3. CKupdate();
  4. });
  5. });
  6. function CKupdate() {
  7. for (instance in CKEDITOR.instances) {
  8. var ins = CKEDITOR.instances[instance];
  9. ins.setData(ins.getData().replace(new RegExp("\r\n", "g"), ""));
  10. ins.updateElement();
  11. }
  12. }