Skip to content

Instantly share code, notes, and snippets.

@leocavalcante
Last active December 17, 2015 20:58
Show Gist options
  • Save leocavalcante/5671054 to your computer and use it in GitHub Desktop.
Save leocavalcante/5671054 to your computer and use it in GitHub Desktop.
number format API example
<!-- prefix : thousands : decimals : numdecimals : sufix -->
<!-- $ 1,234.567 -->
<input type="text" data-numformat="$ :comma:dot:3:">
<!-- R$ 1.234,56 reais -->
<input type="text" data-numformat="R$ :dot:comma:2: reais">
<!-- 1234.56 -->
<input type="text" data-numformat="::dot:2:">
<!-- 1.234 -->
<input type="text" data-numformat=":dot:::">
@suissa
Copy link

suissa commented May 30, 2013

Também prefiro a ultima forma :D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment