jQuery(document).ready(function() {
						   
	$("#notas_form").keypress(function(e){
		if(e == 13){
			return false;
		}
	});
	
	$('input').keypress(function(e){
		if(e.which == 13){
			return false;
		}
	});
						   
	$("#cargarBT").click(function(event){
		if($("#DNI").val() == ''){
			alert("Ingrese un número de documento");
		}else{
			$("#resultado").empty();
			$("#spinner").append('<img src="imagenes/spinner.gif" alt="Verificando" id="Verificando" />');
			$.post("ajax-notas.php", { DNI: $("#DNI").val() },
				function(data){
					$("#spinner").empty();
					$("#DNI").val('');
					$("#resultado").append(data);
				});
		}
		event.preventDefault();
	});
});

