formulir kirim tidak memuat ulang

// Just handle the form submission on the submit event, and return false:
$('#contactForm').submit(function () {
 sendContactForm();
 return false;
});

//You don't need any more the onclick event on the submit button:
<input class="submit" type="submit" value="Send" />
GutoTrosla