function check_pedido(){ var campos = new Array('nombre', 'apellido1', 'dni', 'localidad', 'provincia', 'telefono', 'email', 'direccion', 'cp'); var error = false; for(var i=0;i div').slideDown(500); $('.fin_pedido').html(''); }); }); var urlweb="http://www.aceroi.es/"; /* Cambiamos de block a none y viceversa de un div */ function display_on_off(div){ if(document.getElementById(div).style.display=="none") document.getElementById(div).style.display="block"; else document.getElementById(div).style.display="none"; } function display_on_display_off(div_on, div_off){ display_on(div_on); display_off(div_off); } /* Ponemos block a on */ function display_on(div){ document.getElementById(div).style.display="block"; } /* Ponemos block a off */ function display_off(div){ document.getElementById(div).style.display="none"; } /* Alert con confirmacion */ function alerta(item, ruta){ borrar=window.confirm('Seguro que desea eliminar '+item+'?'); if(borrar) document.location.href=ruta; } //Quitar contenido del input function updateInput(txtLabel, thisInput, opcion) { if (opcion == 1) { if (thisInput.value == txtLabel) thisInput.value = ''; } else { if (thisInput.value == '') thisInput.value = txtLabel; } }