Я хочу использовать код iframe в редакторе wysi html5. Я использовал
$('.script_texteditor').wysihtml5({
и
$(function () {
$('.script_texteditor').wysihtml5({
"stylesheets": ["css/wysiwyg-color.css"], // CSS stylesheets to load
"color": true, // enable text color selection
"size": 'small', // buttons size
"html": true, // enable button to edit HTML
"format-code" : true, // enable syntax highlighting
"font-styles": true, //Font styling, e.g. h1, h2, etc. Default true
"link": true, //Button to insert a link. Default true
"font-type": true,
"image":true, //Button to insert an image. Default true,
"fontFamilySelection": true,
"emphasis": true, //Font styling, e.g. h1, h2, etc. Default true
"lists": true, //(Un)ordered lists, e.g. Bullets, Numbers. Default true
"blockquote": true, //Blockquote
"iframe": {
"check_attributes": {
"src": "url"
}
}
});
});
Я использовал этот код javascript в теге textarea:
<TEXTAREA class="form-control script_texteditor" NAME=script_text ROWS=20 COLS=50></TEXTAREA>
Мой вопрос, почему некоторые html теги и тег iframe не включены?