I\'m not sure how this is done. I could hard code the route I\'m trying to use, but I\'d like to do this the right way.
I have a dropdown that needs to load a new pa
You need a way of storing all URLs in the page, e.g.
<option value="@routes.Accounts.transactions(id)">Display</option>
Then onChange, you can:
$("select[name='product']").change(function() { location.href = $(this).val(); });