I want to open an empty form when i will click on the Create A New Account button. I used javascript here so that after uploading a resume, it will automatically pop up registration page with name and emailid. But if i close the form and again press on create a new account it is not opening an empty form but with data.
I have my button on
base.html
<div class="forgot_create-new">
<a href="#" class="upload_btn_resume up_res">Upload Resume</a>
<a href="#" class="new_account">Create New Account?</a>
</div>
And i have my form on
index.html
<form id="ApplicantFormRegister" name="ApplicantFormRegister" class="form-horizontal
ApplicantForm" method="POST" enctype="multipart/form-data">
<div class="form-group">
<label class="col-sm-4 control-label">Email ID<span class="important">*</span></label>...........cont
I tried below but unable to open an empty form
$('#form_id').trigger("reset");