Skip to content

Commit

Permalink
Updated min versions / Change README
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviosilveira committed Jan 26, 2014
1 parent 155fea4 commit 2fe0dc9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Jquery-Price-Format
===================

jQuery Price Format Plugin is a plugin to format input text fields as prices. For example, if you type 123456, the plugin updates it to US$ 1,234.56.
It is costumizable, so you can use other prefixes and separators (for example, use it to get R$ 1.234,55).
jQuery Price Format Plugin is a plugin to format input text fields as prices.
For example, if you type 123456, the plugin updates it to US$ 1,234.56.
It is costumizable, so you can use other prefixes and separators (for example, use it to get R$ 1.234,55), use plus sign and minus sign.

Now in the version 2.0, jQuery Price Format can be used for any HTML element.

Check our site for examples: http://jquerypriceformat.com
2 changes: 1 addition & 1 deletion example/jquery/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="../../jquery.price_format.js"></script>
<script type="text/javascript" src="../../jquery.price_format.min.js"></script>
<script type="text/javascript">

$(function(){
Expand Down
2 changes: 1 addition & 1 deletion example/prototype/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<head>
<script src="//ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js"></script>
<script type="text/javascript" src="../../Prototype_Price_Format.js"></script>
<script type="text/javascript" src="../../Prototype_Price_Format.min.js"></script>
<script type="text/javascript">
document.observe("dom:loaded", function() {
new NumberFormat('money', {prefix: 'U$', thousandsSeparator: ',', allowNegative: true});
Expand Down
2 changes: 1 addition & 1 deletion jquery.price_format.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2fe0dc9

Please sign in to comment.