I've created a function where all drop downs on the page with the class ".dropdown" do something when changed. However adding subsequent dropdowns dynamically do not trigger the event. How can I make the dynamic dropdowns trigger the change event?
$(".dropdown").change(function () {
//Do Something
});