Answers for "print webpage with iframe"

1

html iframe full page

<iframe src="mypage.html" style="border: 0; width: 100%; height: 100%">Your browser doesn't support iFrames.</iframe>
Posted by: Guest on July-06-2021
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