|  | @@ -79,9 +79,9 @@ $(document).ready(function () {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |    $('#letter-f form').submit(function (event) {
 | 
	
		
			
				|  |  |      event.preventDefault();
 | 
	
		
			
				|  |  | -    $.get('f.php', { 'term': $('input[name="term"]').val() }, function(data) {
 | 
	
		
			
				|  |  | +    var formValues = $(this).serialize();
 | 
	
		
			
				|  |  | +    $.get('f.php', formValues, function(data) {
 | 
	
		
			
				|  |  |        $('#dictionary').html(data);
 | 
	
		
			
				|  |  |      });
 | 
	
		
			
				|  |  |    });
 | 
	
		
			
				|  |  |  });
 | 
	
		
			
				|  |  | -
 |