my Json
looks like this:
[{\"1332879360000.0\": 300.0, \"1332797760000.0\": 353.0,
\"1332799320000.0\": 358.0, \"1332
I am not sure to have understood your question.... so if I misunderstood, please correct me.
You can just copy your json data
in a file which name is example.json
and then in your ajax request make the following:
function requestData() {
$.ajax({
url: './example.json', // depending which directory you save your file
// the other code
});
};