Semantic UI dropdown change handler
I have the following dropdown using Semantic UI: <div class="ui selection dropdown select-language"> <input name="language" type="hidden" value="fr-FR"> <div class="text">French</div> <i class="dropdown icon"></i> <div class="menu ui transition hidden"> <div class="item" data-value="en-US">English</div> <div class="item active" data-value="fr-FR">French</div> </div> </div> And in the jQuery side I init it: $(".select-language").dropdown() How can I add the change handler? The only thing related to this I found in the documentation is: onChange(value, text) Context: Dropdown Is called after a