I have problem with Semantic-UI when I scroll page. If I start scrolling and I touch dropdown, the whole content is showing.
I only want to open dropdown when I click on it, not even my finger is going through it.
Try to scroll this page on mobile: http://semantic-ui.com/modules/dropdown.html
Just unbind touchstart event, like:
$('.ui.dropdown').unbind('touchstart');