Before all, sorry for my english
I am trying to save multiples web responses into an array
I have something like this:
var array = [];
$.ajax({
url: URL,
success: function(e){
array.push(e);
}
});
But i get anything like this:
[[31312, 123213], [12321, 123123], [123213, 132132]]
And i want to get:
[321321, 321321, 32131, 321312, 321321, 321312]
How i can do this?
Thanks in advance!!
[31312, 123213]a single response and are you getting three responses. Can you please explain the problem further