I have one iframe in my page that will load the local html content but not loading remote web content.
Here is the code :
<iframe id="frame1" src="http://localhost/test.html" width="520px" height="400px" scrolling="auto"></iframe>
This is working.
But the following code is not working :
<iframe id="frame1" src="http://www.google.co.in/" width="520px" height="400px" scrolling="auto"></iframe>
Please any help