I agree with scessor that the second function should be executed within the first one - on success. Here is my AJAX function, without any jquery or else needed:
function ajax_call_1(divId, params)
{
if (window.XMLHttpRequest){
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else{
// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
if(divId!='')
document.getElementById(divId).innerHTML=xmlhttp.responseText;
else{
// do something else
}
ajax_call_2('html_id', 'parameters_to_be_send')
}
}
xmlhttp.open("POST", "script_url", true); //file
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.setRequestHeader("Content-length", params.length); //length
xmlhttp.setRequestHeader("Connection", "close");
xmlhttp.send(params); //parameters
}
And the second function is the same, but without a function call on success:
function ajax_call_2(divId, params)
{
if (window.XMLHttpRequest){
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else{
// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
if(divId!='')
document.getElementById(divId).innerHTML=xmlhttp.responseText;
else{
// do something else
}
}
}
xmlhttp.open("POST", "script_url", true); //file
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.setRequestHeader("Content-length", params.length); //length
xmlhttp.setRequestHeader("Connection", "close");
xmlhttp.send(params); //parameters
}
ajax_call_1 function arguments are:
divId : id of the html element that will hold the result after the AJAX call
params : parameters that should be sent with the request i.e. id, name or some sort of other values you need to send.
To be honest this 2 functions are not very reusable. I am in progress of changing them to be more abstract so they can be used for every 2 simultaneously made AJAX calls, but for now they do a good job.