Allow HTML tables to have formatted numbers in Data.js
An HTML table that has dollar signs and commas does not work with Data.js. Support can be added like this:
Original code:
.innerHTML;
replace with this code:
.innerHTML.replace(/[$,]/g, "");
1
vote
Joe Fallon
shared this idea