Is their any way to place content in IFRAME without using src
I have created a custom WYSIWYG editor for editing an XML file. I have used an <iframe>
for this.
<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>
.
精彩评论