크롬 (Chrome) window.close(), 팝업창 닫히지 않을 때 해결 방법
크롬 (Chrome) window.cose(), 팝업창 닫히지 않을 때 해결 방법
익스플로러에서는 동작하는 window.close() 함수를 크롬에서 테스트 했을 때 팝업창이 닫히지 않습니다.
크롬에서 scripts may close only the windows that were opened by it. 오류 메세지가 뜹니다.
제가 사용한 함수 공유 드립니다.
function close(){
window.open('', '_self', '');
window.close();
return false;
}