“Cómo cerrar Tab de JavaScript” Código de respuesta

pestaña actual de cierre de JavaScript

window.close();//closes the current browser tab
Grepper

Cómo cerrar Tab de 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
web-noob master

cómo-to-to-to-top-turrent-tab-in-a-browser-window

Writing this on 24 Dec 2020. Tried almost all the things available on google, but none of them worked in Chrome browser. window.open('','_self').close() works for IE.
Blushing Bird

Respuestas similares a “Cómo cerrar Tab de JavaScript”

Preguntas similares a “Cómo cerrar Tab de JavaScript”

Más respuestas relacionadas con “Cómo cerrar Tab de JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código