Hola,
Estoy intentando enviar la información de un form a dos paginas diferentes.
Inicialmente lo tenia de esta manera, pero esta forma me funciona perfectamente en firefox, pero no en IExplorer:
Código HTML:
theForm.action = "http://www.EXTERNALPAGE.com/f18";
theForm.submit();
theForm.action = "control_login.php";
theForm.submit();
return (true);
Buscando maneras para solucionar eso encontre que si se agrega target antes del submit funciona, pero me crea tantas paginas como actions tengo. esta forma está así:
Código HTML:
theForm.action = "http://www.EXTERNALPAGE.com/f18";
theForm.target = "http://www.EXTERNALPAGE.com/f18";
theForm.submit();
theForm.action = "control_login.php";
theForm.target = "_self";
theForm.submit();
return (true);
Como escribo esa opción me funciona en IExplorer pero me habre 2 paginas adicionales, como puedo enviar eso? Espero puedan ayudarme