Saltar al contenido

ejemplo de código html del botón cerrar pestaña

Ejemplo 1: javascript cerrar la pestaña actual

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

Ejemplo 2: cerrar la pestaña del navegador javascript

//You are able to close a browser tab with an index.html page
//The code below from lines 3-13 are from the index.html page, it redirects you to another page
<!DOCTYPE html>
<html>
<head>

    <script type="text/javascript">
window.open("/folderDirectory/example.php"); 


     </script>
</head>
</html>
//The code below is from the example.php
  $(document).ready(function(){
    $("button").click(function(){
      window.close();
      });
  });//jquery is used to make the user click the button to exit 

//The code below should be placed in the html body, it is a button that closes the window when the user clicks on it
<button style="border: none;" >Exit</button>
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *