0

what is the best way to bind a dropdown at client side using JQuery

Ulhas Tuscano
  • 5,502
  • 14
  • 58
  • 89

1 Answers1

0

Assuming you are asking how to bind an event to a select element...

$('select').change(function() {
   ...
});
alex
  • 479,566
  • 201
  • 878
  • 984