|
@@ -76,4 +76,12 @@ $(document).ready(function () {
|
|
|
var requestData = { term: $(this).text() };
|
|
|
$('#dictionary').load('e.php', requestData);
|
|
|
});
|
|
|
+
|
|
|
+ $('#letter-f form').submit(function (event) {
|
|
|
+ event.preventDefault();
|
|
|
+ $.get('f.php', { 'term': $('input[name="term"]').val() }, function(data) {
|
|
|
+ $('#dictionary').html(data);
|
|
|
+ });
|
|
|
+ });
|
|
|
});
|
|
|
+
|