I have a select element and want to simulate a click. The whole app is written in angularjs, but the trigger event is written in jquery. So I use the on() function like this:
$(document).on('click', '.fa', function() {
$(this).siblings('select :selected').change();
});
I tried the change() function to pull down the select options. Unfortunatly it don't work. Maybe this JSFiddle helps for better understanding. Thanks for reply.