Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

285
Vistas
Javascript - How to check if window.open(url) is successful?

How to check the status and/or wait until a successful connection of a window.open()? (Or suggest better alternatives)

var url = 'https://www.google.com';
var newWindow = window.open(url, 'main');

if(newWindow == 'success'){ //url was successfully opened
    ...
}
else { //url returned 404
    ...
}
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

As stated on MDN's Window.open() page:

Return value

A WindowProxy object, which is basically a thin wrapper for the Window object representing the newly created window, and has all its features available. If the window couldn't be opened, the returned value is instead null.

So, it suffices to check for null:

var url = 'https://www.google.com';
var newWindow = window.open(url, 'main');

if (newWindow == null) {
  // Failed
} else {
  // Success
}

A window being successfully opened doesn't give you information about the HTTP response status of the URL loaded in that window though.

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda