본문 바로가기
프로그래밍/javascript

IE(Internet Explorer) self close 버전별 정리

by Daily Investing 2011. 11. 28.
반응형

IE6 :
window.opener = self;
self.close();

IE7 :
window.open('about:blank','_self').close();

IE8 :
window.opener='Self';
window.open('','_parent','');
window.close();
반응형