79716781

Date: 2025-07-28 00:28:44
Score: 1
Natty:
Report link

window.onload = function () {

const intentarClic = () => {

const boton = document.getElementById("btnRedireccionar");

if (boton) {

  boton.click();

} else {

  console.warn("Esperando al botón...");

  setTimeout(intentarClic, 500); // Reintenta cada 500ms

}

};

intentarClic();

};

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Juan Maya