재우니의 블로그

 

web page 페이지가 iframe 안에 들어가 있는지 체크

 

해당 페이지가 iframe 안에 들어가 있는지 체크 하는 구문 입니다.

들어가 있으면 {} 안에 구문이 실행 됩니다.

 

 

 

if ( self !== top ) {
  // you're in an iframe
}

 

 

https://stackoverflow.com/a/18231292

 

jQuery: Check if content is sitting inside an iframe

I'm loading a page through an iframe. If the content is sitting inside an iframe I need to add a loading spinner and if not, then no need for the spinner. Problem: How can I use jQuery to check f...

stackoverflow.com