I'm trying to sort d3 table on 2 tables and every browser does it ok except chrome. What problem can it be and how to fix it?
My code:
enter code her}).done( function (response) {
response.sort(function(x, y){
return d3.ascending(x.DQI_FROM_SPEC, y.DQI_FROM_SPEC);
});
response.sort(function(x, y){
return d3.ascending(x.AREA, y.AREA);
});e