You can't expect two separate ajax calls to be processed simultaneously, doubly so because JS is single threaded (and AJAX calls are asynchronous, lest you specify they're not - but that is to be avoided). Also: You can't expect JS to take into account the number of arguments you specified for any function and know that it shouldn't invoke the function until both arguments have a value.
Lastly: could you specify what your question actually is: you're asking about how to call another function, but in both cases you seem to be passing the same success callback. Could you elaborate on what data both calls are expected to return, and what data you're sending, too?
If you want a function to be called only after both calls were successful, you could use a closure:
var callme = (function()
{
var JSON1, JSON2;
return function(response)//this function will receive each response separately
{
JSON1 = JSON1 || response;//if JSON1 isn't set, assign current response
if (JSON1 !== response)
{//JSON1 was already set, second response is in
JSON2 = response;
//code to process both responses at once goes here
//but make them undefined before returning, if not, a second call won't work as expected
JSON1 = undefined;
JSON2 = undefined;
}
};
}();
$.ajax({url: 'some/url',
data: yourData1,
type: 'GET',
success: callme});
$.ajax({url: 'second/url',
data: yourData2,
type: 'GET',
success: callme});
Do bear in mind that it's crucial that the closure (callme function) precedes the AJAX call: because of the way callme is assigned a function (as an expression), the function declaration is not hoisted!