<selectid="multiselect"multiple="multiple"><option>Item1</option><option>Item2</option></select><script>$("#multiselect").kendoMultiSelect({change:function(e){var value =this.value();// Use the value of the widget}});</script>
<selectid="multiselect"multiple="multiple"><option>Item1</option><option>Item2</option></select><script>functionmultiselect_change(e){var value =this.value();// Use the value of the widget}$("#multiselect").kendoMultiSelect();var multiselect =$("#multiselect").data("kendoMultiSelect");
multiselect.bind("change", multiselect_change);</script>