Click event will be triggered repeatedly when I click the input.search.
It also occur in my project and http://semantic-ui.com/modules/dropdown.html#/examples.
I need some help. Thanks
It was a quite annoying bug given how awesome this feature could be. I had a hacky work around:
$('.dropdown').off('click');
$('.dropdown').on('click', function () {
console.log('show menu');
$('.dropdown .menu').transition('slide down');
})
Basically it unbinds all click events to "dropdown", and rebinds a single click to display/hide the dropdown menu.
I really hope they could fix this at some point.
It opens all the dropdowns and messes up everything

Edit: Also, clicking on X doesn't work
Someone close this issue. Similar to #4546
Solution:
http://semantic-ui.com/modules/dropdown.html#/settings
Set forceSelection:false and viola! Tested it just now. works.
Most helpful comment
It was a quite annoying bug given how awesome this feature could be. I had a hacky work around:
$('.dropdown').off('click'); $('.dropdown').on('click', function () { console.log('show menu'); $('.dropdown .menu').transition('slide down'); })Basically it unbinds all click events to "dropdown", and rebinds a single click to display/hide the dropdown menu.
I really hope they could fix this at some point.