step

step - Specifies if the ticks of the slider element will be displayed on each step or some steps will be skipped.
The step defines the interval of ticks display. Its default value is 1.


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

<script type="text/javascript">

     $(function () {
        $("#slider").shieldSlider({
           ticks: {
               enabled: true,
               type: "both",
               step: 1
           },
           min: 10,
           max: 100,
           step: 10
        });
     });

</script>