Currently I have my code working so that if one were to click on a radio button, the url will change and I can paste that url in a different tab and have the same button checked that was in the previous tab.
I did that in my jsp with the following code:
<%= "BoxOne".equals(boxOne) ? "checked=\"true\"" : "" %>
I want to do the same with a drop down menu such that when I select the item from the drop down menu the url is changing and I can paste that URL in a different tab and have that item that I selected from the drop down menu to show up?
How can I do that in terms of my drop down variable is drop and I do not know what to use instead of the "checked=\"true\"" for a drop down?