Necesito definir el action de mi forma según el valor de un select.
me da el siguitente error: Error: filedd.options has no properties
utilizo las siguientes funciones
para tomar el id del select
Código:
para hacer submitfunction xoopsGetElementById(id) { if (document.getElementById(id)) { return document.getElementById(id); } else if (document.all[id]) { return document.all[id]; } else if (document.layers && document.layers[id]) { return (document.layers[id]); } else { return false; } }
Código:
la llamada a la function es:function closeandreload(file){ //esto solo es para comprobar el valor alert(file.options[file.selectedIndex].value); // document.form.action= file; document.form.submit() }
Código:
onClick="closeandreload(xoopsGetElementById('payment'))