loopj / jquery-simple-slider

Unobtrusive numerical slider plugin for jQuery
194 stars 113 forks source link

3 zero avec comma #6

Closed nathan75 closed 11 years ago

nathan75 commented 11 years ago

Hello, is there anyu way to delete the 3 zero after comma?

loopj commented 11 years ago

Yes, just change data.value.toFixed(3) to data.value.toFixed() or use your own custom number formatting.

See https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Number/toFixed for more info about toFixed.

nathan75 commented 11 years ago

Many thanks for your prompt reply. Sorry I didn't see there was a closed issue with the same question.