1// Just handle the form submission on the submit event, and return false:
2$('#contactForm').submit(function () {
3 sendContactForm();
4 return false;
5});
6
7//You don't need any more the onclick event on the submit button:
8<input class="submit" type="submit" value="Send" />