SyntaxFix
Write A Post
Hire A Developer
Questions
$('.contactForm').submit(function(){ var that = this; //...more form stuff... $.post('mail.php',{...params...},function(data){ //...more success stuff... that.reset(); }); });