$("#basic").currency();
33 |123456.34098 becomes 123456.34098
34 | 35 |$("#input").currency();
36 |becomes
37 | 38 |$("#advanced").currency({ region: "GBP", thousands: ",", decimal: ",", decimals: 3 });
39 |123456.34098 becomes 123456.34098
40 | 41 |$(".multiple").currency();
42 |123456.34098 becomes 123456.34098
43 |987654.321 becomes 987654.321
44 |-34.57 becomes -34.57
45 | 46 |$("#convert").currency({ region: "GBP", convertFrom: "EUR" });
47 |12456.89 becomes 12456.89
48 |Note conversion requires the use of a PHP file (sample attached)
49 | 50 |51 |