I have this form:
<form name="customize">
Only show results within
<select name="distance" id="slct_distance">
<option>25</option><option>50</option>
<option>100</option><option value="10000" selected="selected">Any</option>
</select> miles of zip code
<input type="text" class="text" name="zip_code" id="txt_zip_code" />
<span id="customize_validation_msg"></span>
</form>
How can I select the input and select with one jquery selector?
I tried this but it selected all of the selects and inputs on the page:
$("form[name='customize'] select,input")