У меня есть набор полей в шаблоне jQuery:
<script id="tmpl_companies" type="x-jquery-tmpl">
<fieldset id="add-row" class="clearfix">
<div>
<label for="industry_type">Industry Type: </label>
<input type="text" id="industry_type" value="${industry_type}"><br/>
</div>
<div>
<label for="hiring_company_name">Hiring_Company Name: </label>
<input type="text" id="company_name" value=${hiring_company_name}><br/>
</div>
<div class="last">
<button type="submit" id="save" name="save" alt="save" >
<img src="/assets/img/add.png" />
</button>
<button type="reset" id="reset" name="reset" alt="reset" >
<img src="/assets/img/cancel.png" />
</button>
</div>
</fieldset>
</script>
Как сбросить значения набора полей, нажав кнопку сброса
'click #reset' : 'reset'
в backbone.js
reset: function() {
???????
}