Answers for "iframe containse html page"

1

how to check if page is in iframe

if ( window.location !== window.parent.location ) {
  // The page is in an iframe
} else {
  // The page is not in an iframe
}
Posted by: Guest on July-14-2021
1

iframe with html string

<iframe srcdoc="<html><body>Hello, <b>world</b>.</body></html>"></iframe>
Posted by: Guest on August-16-2020

Browse Popular Code Answers by Language