change

This event is fired when the value of the rating is changed.
In this example, we get the new value, selected by the user:

<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>