“Guia HTML Fechar” Respostas de código

Guia Javascript Fechar atual

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

Como fechar a guia por 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

Guia HTML Fechar

// Closes the tab
window.close();
Ultratiger

Respostas semelhantes a “Guia HTML Fechar”

Perguntas semelhantes a “Guia HTML Fechar”

Mais respostas relacionadas para “Guia HTML Fechar” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código