min

min - Specifies the minimum value of the slider element.
The slider minimum value by default is 0.


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

<script type="text/javascript">

     $(function () {
        $("#slider").shieldSlider({
           min: 10,
           max: 100,
           step: 10
        });
     });

</script>