Ver Mensaje Individual
  #6 (permalink)  
Antiguo 11/12/2012, 11:31
Avatar de iviamontes
iviamontes
 
Fecha de Ingreso: enero-2011
Ubicación: $cubano->Arg->Mendoza
Mensajes: 1.184
Antigüedad: 14 años
Puntos: 209
Respuesta: Crear una buena redireccion

te paso las 2 funciones que usé.

Código:
function createForm( sAction, sMethod )
{
	if( ! sMethod ) sMethod = "post";
	
	oForm = document.createElement( "FORM" );
	oForm.action = sAction;
	oForm.method = sMethod;

	document.body.appendChild( oForm );

	return oForm;
}


function setFormField( oForm, sVarName, sVarValue )
{
	if( oForm.all[sVarName]  )
		oForm.all[sVarName].value = sVarValue;
	else
		createFormField( oForm, sVarName, sVarValue );

	return true;
}

function createFormField( oForm, sVarName, sVarValue )
{
	var oField = null;
	
	if( !( sVarName == "" || sVarValue == "" ) )
	{
		oField			= document.createElement( "<input type=\"hidden\" name=\"" + sVarName + "\" value=\"" + sVarValue + "\">" );
		oForm.appendChild( oField );
	}
	
	return oField;
}
__________________
aconcaguaestudio.com