removing html, head, body tag inside TinyMCE

Jacob
Jacob
Member
56 Points
13 Posts

Hi,

I am using tinymce editor. But it gives the html, head and body tag.

tinymce initialization code as:

tinymce.init({
mode: "specific_textareas",
editor_selector: "mceEditor",
convert_urls: false,
relative_urls: false,
plugins: [
"advlist autolink autosave link image lists charmap print preview hr anchor pagebreak spellchecker",
"searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
"table contextmenu directionality emoticons template textcolor paste fullpage"
],
toolbar1: "newdocument fullpage | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | styleselect formatselect fontselect fontsizeselect",
toolbar2: "cut copy paste | searchreplace | bullist numlist | outdent indent blockquote | undo redo | link unlink anchor image media code | inserttime preview | forecolor backcolor",
toolbar3: "table | hr removeformat | subscript superscript | charmap emoticons | print fullscreen | ltr rtl | spellchecker | visualchars visualblocks nonbreaking pagebreak restoredraft",
menubar: false,
toolbar_items_size: 'small',
style_formats: [
{ title: 'Bold text', inline: 'b' },
{ title: 'Red text', inline: 'span', styles: { color: '#ff0000' } },
{ title: 'Red header', block: 'h1', styles: { color: '#ff0000' } },
{ title: 'Example 1', inline: 'span', classes: 'example1' },
{ title: 'Example 2', inline: 'span', classes: 'example2' },
{ title: 'Table styles' },
{ title: 'Table row 1', selector: 'tr', classes: 'tablerow1' }
],
templates: [
{ title: 'Test template 1', content: 'Test 1' },
{ title: 'Test template 2', content: 'Test 2' }
]
});

 

how to remove it.

thanks...

Views: 13151
Total Answered: 2
Total Marked As Answer: 1
Posted On: 12-Sep-2015 02:04

Share:   fb twitter linkedin
Answers
Brian
Brian
Moderator
2232 Points
14 Posts
         

hi Jacob,

remove the fullpage plugin from script as:

plugins: [
"advlist autolink autosave link image lists charmap print preview hr anchor pagebreak spellchecker",
"searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
"table contextmenu directionality emoticons template textcolor paste "
],

 

Posted On: 12-Sep-2015 02:16
Ashwini Jagdale
Ashwini...
Member
10 Points
0 Posts
         

Hi Team,

its working for me

 

Posted On: 25-Oct-2017 07:05
 Log In to Chat