8 lines
175 B
JavaScript
8 lines
175 B
JavaScript
$(document).ready(function() {
|
|
$('._sendContactIndex').each(function() {
|
|
$(this).click(function() {
|
|
$('#sendContactFormIndex').submit();
|
|
return false;
|
|
})
|
|
});
|
|
}); |