I have code that calls $ .ajax as follows:
$.ajax({
type: "POST",
url: "/sandbox/graphloader/mock3",
async: false,
data: {calInput1:dates[0], calInput2:dates[1]},
success: function(data){
data=eval(data);
for(var x in data[0]){
}
fillPercents(column);
}});
Now it works in all browsers except Firefox. firebug indicates that it receives a response from the message, but for some unknown error, it does not display data. What could be the problem?
source
share