It has the simplest: $("form-selector-here")[0].reset()but also see: Resetting a multi-stage form using jQuery
Note that this does not require jQuery at all, as it $(selector)[0]gets the original DOM element. You can also say document.getElementById("myFormId").reset().
$("#btn1").click(function(){
$("#form1")[0].reset();
document.getElementById("form1").reset();
});
source
share