jquery read dropdown in table cell code example
Example: jquery read dropdown in table cell
$('#orders').on('change', '.dropdown_select' , function () {
console.log("value is " + $(this).find(":selected").val());
});
$('#orders').on('change', '.dropdown_select' , function () {
console.log("value is " + $(this).find(":selected").val());
});