Click here to Skip to main content
15,913,055 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hiii all,
i am using nowadays javascript code with webservice and now i am trying to fill dropdownlist (or select in HTML) and i have filled it already.
Now, I want to say in its select index changed do something.....

can any one help me about that, please?????????????

thanks
Posted

 
Share this answer
 
Use the change event

$("#myDropDown").change(function()
{
  ... do something...
});
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900