Hi,
I have dropdown with some optional value.if change the those value based on that will display another dropdown with value from database.I am doing this process in jsp page.First dropdown values are static(coded in jsp).but second dropdown values are come from database when changeevent of first dropdown.
Here i need to implement ajax or javascript ? Could you give me examples of this drop down.
one dropdown have static value like name,address,city like.
<select id="search" onchange="menu_changed();">
<option></option>
<option>name</option>
<option>address</option>
<option>city</option>
</select
Now, database coloumn name name,address,city like that.
if i select "name" in first drop down, enable the second dropdown with list name.Those name should come from database.
Please give me your ideas.