Html Slider

Set the tooltipFormatFunction property of the jqxSlider. Author: http://jqwidgets.com

by jqwidgets

HTML

<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<script src="https://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<br/><br/><br/><div id="jqxSlider"></div>

JavaScript

$('#jqxSlider').jqxSlider({
     theme:'energyblue',
     tooltip:true,
     tooltipFormatFunction: function(value)
     {
         return new Number(value).toPrecision(2);
     }
 });