I'm trying find out constraint with Iframe
usages.
Below lines worked fine and I can see content in Iframe:
<iframe src="https://www.w3schools.com/" height="500" width="500"></iframe>
<iframe src="https://www.w3.org/" height="500" width="500"></iframe>
But these lines doesn't work:
<iframe src="https://www.microsoft.com/en-gb/" height="500" width="500"></iframe>
<iframe src="https://www.google.com/" height="500" width="500"></iframe>
How to determine which websites can be supported in a iframe
and which were not? Is there a way to find that out without displaying it in iframe
? I want to display a message when user types a URL
to inform him that web site is not supported in iframe
.