Skip to content

Instantly share code, notes, and snippets.

@thirdj
Created August 16, 2013 03:22
Show Gist options
  • Select an option

  • Save thirdj/6247017 to your computer and use it in GitHub Desktop.

Select an option

Save thirdj/6247017 to your computer and use it in GitHub Desktop.
브라우저 현재 작업창 닫기
$(function(){
$('#window-btn').click(function(){
if ( $.browser.msie ) {
window.opener='Self';
window.open('','_parent','');
window.close();
} else {
window.close(); // 일반적인 현재 창 닫기
window.open('about:blank','_self').self.close(); // IE에서 묻지 않고 창 닫기
}
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment