개발자의 끄적끄적

[html/css] html iframe allow popups error 해결 방법 본문

개발/html & css

[html/css] html iframe allow popups error 해결 방법

효벨 2021. 9. 10. 02:00
728x90
반응형

[html/css] html iframe allow popups error 해결 방법

 

 

html 에서

 

iframe 를 이용하다 보면

 

allow_popups 관련 에러

 

콘솔에 나타나는 경우가 있습니다.

 

그럴때는

 

아래와 같이 sandbox 를 추가해주시면 됩니다.

 

<iframe id="test" src="IFRAME_SRC" sandbox="allow-popups"></iframe>

 

위 내용처럼,

 

sandbox 속성에 allow-popups 라는 내용을 추가해주시면

 

해당 에러는 사라지게 됩니다!

 

참고들 하세요!

반응형
Comments