max

max - Specifies the maximum value of the slider element.
The slider maximum value by default is 100.


<input id="slider" value="100" />

<script type="text/javascript">

     $(function () {
        $("#slider").shieldSlider({
           max: 200,
           step: 20
        });
     });

</script>