My attempt at using a basic jquery change listener on a materialize css select dropdown has been unsuccessful.
$("#somedropdown").change(function() {
alert("Element Changed");
});
1) Can anyone provide guidance on how to add a listener to detect changes in a materialize select element?
2) Furthermore, what is the best approach to retrieve the selected value in this scenario?