html close window button
<button type="button" onclick="javascript:window.close()"> Name </button>
html close window button
<button type="button" onclick="javascript:window.close()"> Name </button>
javascript close window
<!DOCTYPE html>
<html>
<body>
<button onclick="openWin()">Open "myWindow"</button>
<button onclick="closeWin()">Close "myWindow"</button>
<script>
var myWindow;
function openWin() {
myWindow = window.open("", "myWindow", "width=200,height=100");
myWindow.document.write("<p>This is 'myWindow'</p>");
}
function closeWin() {
myWindow.close();
}
</script>
</body>
</html>
how to close tab by javascript
// IF you use in a button
<button onclick="window.close();">Exit</button>
// if you use in function
function closeWin() {
myWindow.close(); // Closes the new window
}
// But it will only work when you open a window through your code like this
function openWin() {
myWindow = window.open("", "myWindow", "width=200, height=100"); // Opens a new window
}
// You can't close the current window that was open by browser. beacuse browser don't give permission for this
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us