template

template - Specifies if the content template of the tooltip.


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

<script type="text/javascript">

     $(function () {
        $("#slider").shieldSlider({
           tooltip: {
               enabled: true,
               template: "{0:C}"
           },
           min: 10,
           max: 100,
           step: 10
        });
     });

</script>