You are not logged in.Register in the forum at tinymce.com.
RunSaveForkReset
Title
DescriptionThe class attribute is stripped from iframe elements.
TinyMCE Version 4.0b2 4.0b1 3.5b3 3.5b2 3.5b1 3.5.8 3.5.7 3.5.6 3.5.5 3.5.4.1 3.5.4 3.5.3 3.5.2 3.5.1.1 3.5.1 3.5.0.1 3.5 3.4.9 3.4.8 3.4.7 3.4.6 3.4.5 edge nightly 4.0b2 4.0b1 3.5b3 3.5b2 3.5b1 3.5.8 3.5.7 3.5.6 3.5.5 3.5.4.1 3.5.4 3.5.3 3.5.2 3.5.1.1 3.5.1 3.5.0.1 3.5 3.4.9 3.4.8 3.4.7 3.4.6 3.4.5 edge nightly
Doctype HTML5 Quirks
Username
Password
Login Register on tinymce.com
Give us feedback.Version 1.0 Beta (17259 fiddles)This site was heavily inspired by jsFiddle
<script type="text/javascript"> tinyMCE.init({ // General options mode : "textareas", theme : "advanced", plugins : "autolink,lists,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,imagemanager,filemanager", // Theme options theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect", theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor", theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen", theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage", theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "left", theme_advanced_statusbar_location : "bottom", theme_advanced_resizing : true, width: "100%", height: "400", extended_valid_elements : "iframe[class|src|id]" }); </script> <form method="post" action="dump.php"> <textarea name="content"> <h2>The below class on the iframe element is stripped out by the editor</h2> <iframe class="test" width="425" height="350" src="https://maps.google.co.uk/?ie=UTF8&t=m&ll=52.8382,-2.327815&spn=4.646012,9.338379&z=6&output=embed"></iframe> <p>I want to be able to add a class to iframe elements in order to select them with CSS. Use the HTML view to see that the class attribute isn't there in the editor. This fiddle is for <a href="http://stackoverflow.com/questions/13161323/tinymce-strips-class-attribute-from-iframe-element">this stack overflow question.</a></p> </textarea> </form>