function submitForm(form) { $(form).submit(); }; function detectEvent(e) { opc = false; var evt = e || window.event; tecla = evt.keyCode; if (tecla > 47 && tecla < 58) { opc = true;} /* los numeros del 0 al 9 para el IE */ if (evt.charCode > 47 && evt.charCode < 58) {opc = true;} /* los numeros del 0 al 9 para FF */ if (tecla == 35 && !document.all) {opc = true;} /* la tecla END para FF */ if (tecla == 46 && !document.all) {opc = true;} /* la tecla DELETE para FF */ if (tecla > 36 && tecla < 41 && !document.all) {opc = true; } /* las flechas para el FF */ if (tecla == 8 || tecla==9 || tecla==13){opc = true;} /* Backspace, TAB y Enter */ if(opc==false) {alert('Solo se aceptan numeros');} return opc; } function addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != 'function'){ window.onload = func; } else { window.onload = function(){ oldonload(); func(); } } } function validarBusqueda() { if($('busArchivo')) { $('busArchivo').onsubmit = function () { dia = $('busArchivo').getElementsByTagName('input'); if(isNaN(dia[0].value)) {alert('\'Día\' tiene que ser un número'); return false;} if(dia[0].value > 31) {alert('\'Día\' tiene que ser un día de mes'); return false;} } } } function cambiaCity() { $('cambCiudad').style.cursor = 'pointer'; $('cambCiudad').onclick = function () { if($('formCiudad').style.display == 'block') { $('formCiudad').style.display = 'none'; } else { $('formCiudad').style.display = 'block'; } } $('selectCiudad').onchange = function () { $('formCiudad').submit(); } } function radio() { url = 'https://cuencarural.com/popup-radio.php'; window.open(url, '_blank', 'width=337,height=400'); return false; } addLoadEvent(validarBusqueda); addLoadEvent(cambiaCity);