what is the best way to bind a dropdown at client side using JQuery
Asked
Active
Viewed 1,819 times
0
-
Do u want to bind data from server at client (AJAX)? – Shahin Apr 25 '11 at 03:33
1 Answers
0
Assuming you are asking how to bind an event to a select
element...
$('select').change(function() {
...
});

alex
- 479,566
- 201
- 878
- 984
-
No i am asking binding a list to a dropdown as we do it at server side using datasource property – Ulhas Tuscano Apr 25 '11 at 03:30