I have helper function formatting my money value into pounds and pence:
formatMoney: function(10496.470000000001){
return value.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, "1,");
},
Gives me:
11,496.471,001,001,001
Is there a way I can format this accurately into pounds and pence? so it reads, £11,496.471p