I want to disable my select option because is auto fill.
So the problem is that when I use readonly="readonly" and disable="disable" it changes into a disabled field but it sends null as value due to that my address is not updating. It's MVC template code, using backbone.js.
<div class="login-register" data-validation="control">
<select name="state123" id="state123" class="sumary state" disabled >
{{#each states}}
<option value="{{code}}" {{#if selected}}selected{{/if}}>
{{name}}
</option>
{{/each}}
</select>
</div>
<input type="hidden" name="state" id="state" class="cart-summary-estimate-input state" />