How To Open New Window

본문 바로가기 메뉴 바로가기 보기설정 테마설정
톺아보기 공감글 추천글

// Opens a new blank window window.open("https://example.com", "_blank", "width=800,height=600"); // To force a new window (instead of a tab) use features like width/height window.open("https://example.com", "mywindow", "width=800,height=600,toolbar=yes");

이용규칙 운영알림판 운영소통 재검토요청 도움말 버그신고
개인정보처리방침 이용약관 책임의 한계와 법적고지 청소년 보호정책
©   •  CLIEN.NET

How To Open New Window <Confirmed>

// Opens a new blank window window.open("https://example.com", "_blank", "width=800,height=600"); // To force a new window (instead of a tab) use features like width/height window.open("https://example.com", "mywindow", "width=800,height=600,toolbar=yes");