Remove status bar from CKEditor
Answer is here: http://cksource.com/forums/viewtopic.php?p=42512&sid=5e2f0367542c8dc9468e6addb20d8d70#p42512 config.removePlugins=”elementspath”; config.resize_enabled = false;
Answer is here: http://cksource.com/forums/viewtopic.php?p=42512&sid=5e2f0367542c8dc9468e6addb20d8d70#p42512 config.removePlugins=”elementspath”; config.resize_enabled = false;
When the protectedSource solution is used, i tags are no longer stripped, but img tags stop showing up in the WYSIWIG mode of CKEditor (I’m using 4.3.1). The solution that worked better for me is to disable removing empty i tags using CKEDITOR.dtd.$removeEmpty For example, I added the following to the config.js // allow i … Read more
serialize returns a URL-encoded string containing the form fields. If you need to append to it, you do so using the standard URL-encoded string rules, e.g.: var values = $(“#frmblog”).serialize(); values += “&content=” + encodeURIComponent(content_val); (The above assumes there will always be one value in values after the serialize call; if that’s not necessarily true, … Read more