PHP Classes

File: CMF/Web/scripts/scripts.js

Recommend this page to a friend!
  Classes of Burge Lab   BurgeATS   CMF/Web/scripts/scripts.js   Download  
File: CMF/Web/scripts/scripts.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: BurgeATS
CRM, Ticketing system, and employee manangement
Author: By
Last change: Update of CMF/Web/scripts/scripts.js
Date: 1 year ago
Size: 217 bytes
 

Contents

Class file image Download
function priceSeparator(val) { var val=""+val; var newVal=""; var j=0; for(var i=val.length-1;i>=0;i--,j++) { newVal=val[i]+newVal; if(j%3==2 && j!=(val.length-1)) newVal=","+newVal; } return newVal; }