complete

Fired after the ProgressBar's value has been changed to a value greater than or equal to the max value.


<div id="progress1"></div>

<script type="text/javascript">

     $(function () {
        $("#progress1").shieldProgressBar({
            value: 30,
            text: {
                enabled: true,
                format: "{0} %"
            },
            events: {
                complete: function(e) {
                    alert("complete is fired");
                }
            }
        });
    });

</script>