Consider a web page that has a select menu with a JavaScript event handler tied to the menu\'s onchange event that when fired reloads the page with a new query string (using the
This jQuery code did the trick for me
$(document).ready(function () { $("select").each(function () { $(this).val($(this).find('option[selected]').val()); }); })