select

Fires when an item is selected through user interaction.

Event Data

e.sender kendo.ui.Rating

The widget instance which fired the event.

e.target jQuery

The DOM element that triggered the event.

Example - handling the select event

<input id="rating" />

<script>
    $("#rating").kendoRating({
        select: function (e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
            console.log(e.target);
        }
    });
</script>
In this article