I have a button group an with on.click function it is working. but not with on.change.
<div class="ui buttons">
<button class="ui button">Value 1</button>
<button class="ui button">Value 2</button>
<button class="ui button">Value 3</button>
</div>
And here is my function
$('.ui.button').on('click change', function(){
alert(...)
});
When i use this without click, it's not working.