Answers for "test iframe tag"

14

html iframe tag

<iframe src="http://kidcreatorsteam.com" height="90px" width="40px"></iframe>
<!--I made an iframe! Yay! -->
Posted by: Guest on April-14-2020
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

Browse Popular Code Answers by Language