Bueno, lo he solucionado, los codes quedan tal que así:
Código Javascript
:
Ver original<script type="text/javascript">
function func_fram1() {
var fram1 = document.getElementById('fram1');
var oDoc1 = (fram1.contentWindow || fram1.contentDocument);
if (oDoc1.document) oDoc1 = oDoc1.document;
oDoc1.getElementById('username').value='valor';
oDoc1.getElementById('password').value='valor';
oDoc1.getElementById("loginform").submit();
}
function func_fram2() {
var fram2 = document.getElementById('fram2');
var oDoc2 = (fram2.contentWindow || fram2.contentDocument);
if (oDoc2.document) oDoc2 = oDoc2.document;
oDoc2.getElementById('username').value='valor';
oDoc2.getElementById('password').value='valor';
oDoc2.getElementById("loginform").submit();
}
</script>
Código HTML:
Ver original<iframe name="fram1" id="fram1" src="paga.html" onload="func_fram1()"></iframe> <iframe name="fram2" id="fram2" src="pagb.html" onload="func_fram2()"></iframe>
Código HTML:
Ver original<form id="loginform" method="post" action="[URL]/login.php"> <input type="text" name="username" id="username" /> <input type="password" name="password" id="password" maxlength="64"/> <input type="submit" value=" Login" />
Ni va muy fino ni funciona en todos los navegadores, pero sin tener ni idea de javascript es lo que hay... Saludos!