Cita:
Iniciado por leonel0327 Muchas gracias, tus preguntas son afirmativas, el identificador del Form nunca cambia, el token es el ultimo en generar y son 4 hidden.
Gracias, espero tu respuesta
A ver asi
Código:
<script type="text/javascript">
//<![CDATA[
window.onload = function(){
//var hidden_ret = document.getElementsByName('return')[0];
//alert(hidden_ret.value);
//window.location='index3.php?return='+hidden_ret.value;
var form_tokens = document.getElementById('frmsistema');
var tags_input=form_tokens.getElementsByTagName('input');
var param1 = tags_input[3].name;
var value1 = tags_input[3].value;
var param2 = tags_input[4].name;
var value2 = tags_input[4].value;
alert(param1 + '-' + value1); // solo para verificar
alert(param2 + '-' + value2); // solo para verificar
window.location='index3.php?'+ param1+'='+value1+'&'+param2+'='+value2;
}
//]]>
</script>
Recordá que en el array tags_input el [0] corresponde al text username.
Espero que sea eso lo que necesitás, porque de otra forma no me queda claro
Saludos