Función para hacer submit sobre formulario al cambiar select:
function cambio_select(theList){
if (theList.value!='null' && theList.selectedIndex > 1 ) {
theList.form.submit();...
Con este sistema conseguimos que si no esta el javascript activado funcione el
formulario igualmente.
Archivo php:
<form name='form_ver_registros' action='' method='post' onSubmit='javascript: vi...
Ejemplos sobre manipulación de formularios en javascript
Recoger valores de un formulario
// Elemento que contiene el valorvar caixa_subtotal = document.getElementById('subtotal');// Reco...
varios
05 de Abril, 2009
/ Apuntes / Programación / javascript
Para que los enlaces trabajen sin javascript.
enlace...