akif
akif

Reputation: 12344

HTML Frame Source

Hey is it possible that I insert the source for a frame in the same page in which it is defined.

Like instead of giving the location to the document, can I insert the source in the frame tag?

The problem is I'm calling a function, which is not valid in the other page. So I have to call it in the same page, Got me?

Upvotes: 2

Views: 1535

Answers (1)

Tyler Carter
Tyler Carter

Reputation: 61597

I think that you are able to do this with the data: tag.

<iframe src="data:<source of the page>">. That is how Yahoo recommends for images, so I expect it might work the same from source code.

Another Idea is you can create an empty frame with no source and then use Javascript/jQuery to add HTML.

Upvotes: 2

Related Questions