ckeditor validation for spaces
问题 How can i implement validation on ckeditor to prevent user from adding spaces only . Any answer within today will be greatly appreciated . following is what i tried for validations so far : //Save note from ckeditor $("input.save_note").click(function() { var note_id1 = $(this).attr("rel"); var thiss1 = this; var profile_user_id = $(this).attr("rel1"); var txt=CKEDITOR.instances.editor1.getData(); var no_space_txt = txt.replace(" ",""); // var txt = txt1.replace(/ +(?= )/g,''); var editor