I would like to ask a question
I want to show 3 drop down list in one JSP page,
where the the second drop down list is based on the selected value in the 1st drop down list,
and so on...
According to my limited knowledge, when user selects a value from drop down list,
the user needs to click a button to pass the value to server side.
like this:
<form action="second_drop.jsp">
<select name="drop">
...
</select>
<input type="submit" value="Submit" />
</form>
Now, I would like to ask a question,
is it possible to pass the drop down list value without clicking button?
that is, when users select a value from drop down list,
the selected value can be automatically passed to server side without clicking submit button.
then the server will based on the selected value to display the second drop down list
thanks for help.