25 lines
No EOL
751 B
JavaScript
25 lines
No EOL
751 B
JavaScript
$(document).ready(function() {
|
|
$('#correct-button').click(function() {
|
|
var text = $('#input-text').val();
|
|
$.ajax({
|
|
url: '/correct',
|
|
method: 'POST',
|
|
data: { text: text },
|
|
success: function(response) {
|
|
if (response.error) {
|
|
alert(response.error);
|
|
} else {
|
|
$('#output-text').val(response.text);
|
|
}
|
|
},
|
|
error: function() {
|
|
alert('Une erreur est survenue lors de la correction du texte.');
|
|
}
|
|
});
|
|
});
|
|
|
|
// Load email form
|
|
$.get('ressources/formulaire_courriel.html', function(data) {
|
|
$('#email-form').html(data);
|
|
});
|
|
}); |