I'm making web page that has to show another domain's web page.
For example, in my web html, there are two <div>
tags.
Like :
<html>
<head></head>
<body>
<div>
<p> hello world </p>
</div>
<div>
<!-- other domain's web page comes here -->
</div>
</body>
</html>
To resolve my issue, I should use <iframe>
, <embed>
or <object>
tags, but this causes the cross domain problem. So, I can't use it to show other domain's web page. They doesn't allow me to use it.
So, for example :
<iframe src="http://stackoverflow.com"></iframe>
It doesn't work. My web page can't show stackoverflow.com. Because, stackoverflow denies this.
I have searched lots of things with these issues. But they are just ajax or JSONP. It was not iframe.
Are there solutions to resolve my problem?? Or is it impossible to implement this?