How can I refresh a form JQuery

 


 Do you have this?

<form id="form">.....</form>
If you do, it should work. 
$("#form")[0].reset(); 
If you don't have an "id" for your form tag, you should use 

 <form>.....</form>

$("form")[0].reset();

 

Comments

Popular posts from this blog