<!-- /Search box -->
<aside class="vehicle-search">
<header>
<h2>Find your vehicle</h2>
</header>
<article>
<script>
jQuery(function() {
jQuery('.go').click(function(e) {
e.preventDefault();
jQuery('#vehicle').submit(function (event){
var action = '';
var actionid = jQuery('#categoryid').children(':selected').attr('value');
if (actionid == 1) {
action = 'sales/new-motorhomes';
}
if (actionid == 2) {
action = 'sales/used-motorhomes';
}
if (actionid == 3) {
action = 'sales/caravans';
}
jQuery(this).attr('action', action);
});
});
});
</script>
<form id="vehicle" action="sales/new-motorhomes" method="post">
<h3>Manufacturer</h3>
<!-- <input type="submit"> -->
<select name="manufacturer" id="manufacturers">
<option value="1">Auto-Trail</option>
<option value="2">Adria</option>
<option value="3">Elddis</option>
</select>
<h3>Vehicle Type</h3>
<select name="category" id="categoryid">
<option value="1">New Motorhomes</option>
<option value="2">Used Motorhomes</option>
<option value="3">Caravans</option>
</select>
<h3>Berths</h3>
<input type="text" name="berth" id="berths" style="border: 0; color: #f6931f; font-weight: bold;" />
<div id="slider-berths"></div>
</form>
</article>
<footer>
<span class="goButton">
<a class="go" href=""></a>
</span>
</footer>
</aside>
<!-- /Search box -->
私はここで何を逃した..?