walksalot / jQuery-Currency

Simple, unobtrusive currency converting and formatting

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#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

License:MIT License


Languages

Language:JavaScript 53.1%Language:CSS 25.9%Language:HTML 18.3%Language:PHP 2.7%