markzzz
markzzz

Reputation: 47995

Iframe without src - Can I do it?

I'd like to make another "context" into my html page. Such as a page loaded by iframe. Now, what I'd like to do is use this iframe but without src.

Somethings like :

 <iframe allowtransparency="true" frameborder="0" scrolling="no" style="width:300px; height:20px;">
    <html>
        <head></head>
        <body>
            <div>
                Hello World
            </div>            
        </body>    
     </html>
</iframe>​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

I need this because I wont use ajax and I need a load a script that could make some problems in the same page-context (as I wrote yesterday on SO).

Upvotes: 5

Views: 2222

Answers (1)

user989999
user989999

Reputation:

It seems that this is impossible :(, the only way to create a separate html file.

Source: http://stackprogramer.com/7276457/is-it-possible-to-create-iframe-without-src-but-with-my-html

Upvotes: 2

Related Questions