Files
2026-04-24 15:32:21 +02:00

8 lines
165 B
JavaScript

$(document).ready(function() {
$('._sendContact').each(function() {
$(this).click(function() {
$('#sendContactForm').submit();
return false;
})
});
});