Prueba lo siguiente
Código HTML:
Ver original<form id="form1"name="form1"method="post" onsubmit="return cargar1();"> <input type="text" id="nombre1" name="nombre" /> <input type="text" id="favorito1" name="favorito" /> <input type="submit" id="boton3"class="boton3"value="Enviar" />
<form id="form2" name="form2"method="post" onsubmit="return cargar2();"> <input type="text" id="nombre2" name="nombre" /> <input type="text" id="favorito2" name="favorito" /> <input type="submit" id="boton3" class="boton3"value="Enviar" />
function cargar1() {
// Solo cargas si el valor esta vacio
if ( document.getElementById('nombre1').value == "" )
document.getElementById('nombre1').value = document.getElementById('nombre2').value ;
if ( document.getElementById('favorito1').value == "" )
document.getElementById('favorito1').value = document.getElementById('favorito2').value ;
return true ;
}
function cargar2() {
// Solo cargas si el valor esta vacio
if ( document.getElementById('nombre2').value == "" )
document.getElementById('nombre2').value = document.getElementById('nombre1').value ;
if ( document.getElementById('favorito2').value == "" )
document.getElementById('favorito2').value = document.getElementById('favorito1').value ;
return true ;
}
Espero que te haya servido.