I have created a custom WYSIWYG editor for editing an XML file. I have used an <iframe>
for this.
I have parsed the XML file and all the contents in a variable. How can I place this content in the <iframe>
?
I tried this code but it is not working:
<iframe id="textbox" style="width:300px; height:150px" >
<?php echo $content ?>
</iframe>
Is their any javascript code for this.Thanks in advance.
No. According to the W3C, the content of an
<iframe>
is only displayed by browsers that don't support frames.There's a simple solution though: Every other element will work for you. Consider using a simple
<div>
.