I have a set of dynamically generated dropdown boxes on my page. basically I clone them using jQuery. now I want to capture the value selected on each dropdown on change eve
To get the text of the selected option
$("#your_select :selected").text();
To get the value of the selected option
$("#your_select").val();