i have a form where i want to know which drop down list was modified. how can i accomplish this using jquery? i know for textbox controls you can do some thing like
$("input[type='text']").change(function() {
// do something here
});
but i need to do something similar for drop down list controls.
The
currentTargetattribute of the event object will give you access to the specific element that triggered the event.