jQuery Currency Demo

Simple, unobtrusive currency converting and formatting.

$('#basic').currency();

123456.34098 becomes 123456.34098

$('#input').currency();

becomes

$('#advanced').currency({ region: 'EUR', thousands: '', decimal: ',', decimals: 4 });

123456.34098 becomes 123456.34098

$('.multiple').currency();

123456.34098 becomes 123456.34098

987654.321 becomes 987654.321

-34.57 becomes -34.57

$('#convert').currency({ region: 'GBP', convertFrom: 'USD' });

123456.789 becomes 123456.789

Note converion requires the use of a PHP file

$('#invalid').currency();

This is not a number, so nothing happens

Fork me on GitHub