events

This contains the events collection for the Rating widget. It looks like this:

<div id="rating"></div>

<script type="text/javascript">
jQuery(function($) {
    $('#rating').shieldRating({
        step: 1,
        value: 3,
        markPreset: false,
        events: {
            change: function (e) { 
                alert(e.target.value());
            }
        }
    });
});
</script>

To see the full list, please refer to the following topic.