Difference between revisions of "SsFormatCurrency"
From SmartWiki
Line 1: | Line 1: | ||
− | ==Overview== | + | {{JavaScript Syntax}}==Overview== |
To format a number as a currency using [[JavaScript]] you can use a function called ssFormatCurrency. | To format a number as a currency using [[JavaScript]] you can use a function called ssFormatCurrency. | ||
Revision as of 13:42, 18 April 2014
This feature uses JavaScript syntax |
To format a number as a currency using JavaScript you can use a function called ssFormatCurrency.
Contents
Syntax
- ssFormatCurrency( number, symbol );
Where:
number - is a number to be converted to a currency (i.e: 5000)
symbol - is a currency symbol you want to use, i.e. "€", "$", "£", ...
Example
ssFormatCurrency(5000, "€");
Will return: €5,000.00
Requirements
This function is part of validate.js library and needs to be added to Browser Script custom fields or on template pages, sign-up pages etc. using the following syntax:
<SCRIPT type="text/javascript" language="javascript" src="/validate.js"></SCRIPT>