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);
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