8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
$(document).ready(function() {
|
|
$('._sendContact').each(function() {
|
|
$(this).click(function() {
|
|
$('#sendContactForm').submit();
|
|
return false;
|
|
})
|
|
});
|
|
}); |