$(this).closest('form').find("input[type=text], textarea").val("");
window.location.reload()
document.getElementById("contact_form").reset();
$("contact_form")[0].reset();
Talisman wrote: » jQuery doesn't have a form reset method, you can use a native DOM method:document.getElementById("contact_form").reset(); Or if you want to stay in jQuery land:$("contact_form")[0].reset();
Buford T Justice wrote: » $(this).closest('form').find("input[type=text], textarea").val(""); Or window.location.reload()