Select Page

Tag: htmleditor

Hot to allow using all HTML tags in CK Editor 4

Hot to allow using all HTML tags in CK Editor 4

You need to add these settings where you have initiated editor. CKEDITOR.replace(‘ckeditortextarea’, { allowedContent: true, fullPage: true, }); or by this method.. var config = CKEDITOR.replace( ‘editor1’ ); config.allowedContent = true;...