Files
zurawik.pl/Static/script/validate/extras.sendContact.js
2026-05-15 18:33:51 +02:00

8 lines
165 B
JavaScript

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