Reputation: 1260
Ck-editor is not displaying my content as HTML instead it displaying with HTML tags.
I have initialize ck-editor by below code:
$(document).ready(function() {
CKEDITOR.replace('long_description');
});
Upvotes: 3
Views: 1207
Reputation: 1239
Please check form_helper
file. May be html_escape
will be problematic. Please try by removing this html_escape
and let me know if it works.
Upvotes: 3