I use the Kendo UI multiple choice, and I want the node name to be selected when you click on it. This happens not only when I press X to remove the node, although I also need a name when I delete it.
In this example , when I click on tags, I need names such as "Europe" and "Africa."
I tried this code, but it only works sometimes, and not when I press X
$('.k-multiselect-wrap li .k-delete').click(function() { console.log('Select to remove it'); });
source share