Skip to content

Instantly share code, notes, and snippets.

@helisoncruz
Last active February 25, 2016 12:10
Show Gist options
  • Save helisoncruz/b13e9ef911a676795197 to your computer and use it in GitHub Desktop.
Save helisoncruz/b13e9ef911a676795197 to your computer and use it in GitHub Desktop.
Exemplos de maskMoney Jquery
<script>
$(function() {
$("#demo1").maskMoney();
$("#demo2").maskMoney({thousands:'', decimal:'.'});
$("#demo3").maskMoney({allowZero:false, allowNegative:true, defaultZero:false});
$("#demo4").maskMoney({symbol:'R$ ', thousands:'.', decimal:',', symbolStay: true});
$("#demo5").maskMoney('mask');
$("#demo6").maskMoney('destroy');
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment