Response title
This is preview!
<div id="top_nav">
<select>
<option value="">1</option>
<option value="">2</option>
<option value="">3</option>
<option value="">4</option>
<option value="">5</option>
<option value="">Contact</option>
</select>
Thanks Bas
<div id="top_nav">
<select>
<option value="page1.html">1</option>
<option value="page2.html">2</option>
<option value="page3.html">3</option>
<option value="page4.html">4</option>
<option value="page5.html">5</option>
<option value="contact.html">Contact</option>
</select>
</div>
$('#top_nav select').change(function(){
window.location = $(this).val();
});
Thanks for help, this is the jQuery I have found to solve this.
© 2013 jQuery Foundation
Sponsored by and others.