score:0

try using .concat() instead of .push(), as it sounds like you need to join two arrays-of-objects.

http://www.w3schools.com/jsref/jsref_concat_array.asp

specifically, try:

callbackdata = callbackdata.concat(callbackdata1);

instead of:

callbackdata.push(callbackdata1);

Related Query