Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 7월 공모주 청약 일정
- 6월 공모주 청약 일정
- 주식 청약 일정
- Stock ipo
- php
- IPO
- 주식
- linux
- css
- 주식 청약
- 코드이그나이터
- 오라클
- Oracle
- JavaScript
- Eclipse
- 자바스크립트
- Stock
- java
- 제이쿼리
- jquery
- 자바
- 공모주
- 리눅스
- codeigniter
- 맥
- 공모주 청약 일정
- MYSQL
- 공모주 청약
- SQL
- html
Archives
- Today
- Total
개발자의 끄적끄적
[html/css] html iframe allow popups error 해결 방법 본문
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 라는 내용을 추가해주시면
해당 에러는 사라지게 됩니다!
참고들 하세요!
반응형
'개발 > html & css' 카테고리의 다른 글
[html/css] css 문자열 ... 처리하는 방법 (0) | 2021.09.13 |
---|---|
[html/css] html iframe sandbox allow modals error 해결 방법 (0) | 2021.09.10 |
[html/css] html iframe load complete check example / html iframe 로드 완료 여부 확인 방법 (0) | 2021.09.10 |
[html/css] html a tag text-decoration-line example / html a태그 밑줄 없애는 방법 (0) | 2021.08.31 |
[html/css] html form enter submit disable example / html 폼 엔터 submit 방지하는 방법 (0) | 2021.08.31 |
Comments