value

This setting determines the initial value of the widget. It has to fall between the min and max values.
The default is 0.

The code sample below demonstrates its usage:

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

<script type="text/javascript">
jQuery(function($) {
    $("#rating").shieldRating({
        step: 1,
        value: 3
    });
});
</script>