Skip to content

Instantly share code, notes, and snippets.

@holysugar
Created December 4, 2012 07:00
Show Gist options
  • Select an option

  • Save holysugar/4201393 to your computer and use it in GitHub Desktop.

Select an option

Save holysugar/4201393 to your computer and use it in GitHub Desktop.
開いてすぐ閉じる HTML 例
<!DOCTYPE html>
<html>
<head>
<script>
window.onload = function(){
document.getElementById('d').innerHTML = 'xxxxxxxxxx';
window.open("about:blank","_self").close();
// window.close();
};
</script>
</head>
<body>
<p>closed</p>
<p id="d"></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment