Skip to content

Simple, unobtrusive currency converting and formatting

License

Notifications You must be signed in to change notification settings

walksalot/jQuery-Currency

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#jQuery Currency

Simple, unobtrusive currency converting and formatting

##Requirements

To use jQuery Currency you will need the following:

  • jQuery Version 1.5 - Version 2.1.3
  • PHP to perform foreign exchange conversions

##Example Usage

Format an element on a page, using Default Settings

<script>
$(document).ready(function() {
    $("#basic").currency(); 
});
</script>

For more examples see the demo.

Default Settings

The following list outlines the settings and their defualt values:

$("#number").currency({
    region: "USD", // The 3 digit ISO code you want to display your currency in
    thousands: ",", // Thousands separator
    decimal: ".",   // Decimal separator
    decimals: 2, // How many decimals to show
    hidePrefix: false, // Hide any prefix
    hidePostfix: false, // Hide any postfix
    convertFrom: "", // If converting, the 3 digit ISO code you want to convert from,
    convertLoading: "(Converting...)", // Loading message appended to values while converting
    convertLocation: "convert.php" // Location of convert.php file
});

About

Simple, unobtrusive currency converting and formatting

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 53.1%
  • CSS 25.9%
  • HTML 18.3%
  • PHP 2.7%