Help for this page

Select Code to Download


  1. or download this
    <script type='text/javascript'>
        function formatNumber(myElement) { // JavaScript function to inser
    +t thousand separators
    ...
    
    <!-- in the html page -->
    <input name="amount" id="amount" type="text" onkeyup="formatNumber(thi
    +s);">
    
  2. or download this
    sub thousandformat { # Formats number with thousand separators
        my ($number) = @_;
    ...
        else { $currnb .= ".00"; }
        return $currnb;
    }