La propiedad SVG Window.closed indica si la ventana a la que se hace referencia está cerrada o no.
Sintaxis:
const isClosed = windowRef.closed
Valor devuelto: esta propiedad devuelve el valor booleano del elemento de evento.
Ejemplo 1: En este ejemplo, usaremos el evento onclick.
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="50" onclick="check()" /> <script type="text/javascript"> function check() { document.write( "This Window is closed : ", window.closed); } </script> </svg> </body> </html>
Producción:
Ejemplo 2: En este ejemplo, usaremos el evento onclick.
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"> <text x="50" y="20" font-size="20px" onclick="check()"> GeeksForGeeks </text> <script type="text/javascript"> function check() { document.write( "This Window is closed : ", window.closed); } </script> </svg> </body> </html>
Producción:
Ejemplo 3: En este ejemplo, usaremos el evento onmouseover.
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="50" onmouseover="check()" /> <script type="text/javascript"> function check() { document.write( "This Window is closed : ", window.closed); } </script> </svg> </body> </html>
Producción:
Ejemplo 4: En este ejemplo, usaremos el evento onmouseover.
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"> <text x="50" y="20" font-size="20px" onmouseover="check(event)"> GeeksForGeeks </text> <script type="text/javascript"> function check() { document.write( "This Window is closed : ", window.closed); } </script> </svg> </body> </html>
Producción: