Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

286
Visualizações
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 Respostas
Responde à pergunta

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 Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda