hip_hop_x Posted April 30, 2008 Share Posted April 30, 2008 Is there anyway to avoid this, or to fix it? function showResult(str){ var country=0; if(str=="1"){country=1;} if(str=="2"){country=2;} if(str=="3"){country=3;} if(str=="4"){country=4;} if(str=="5"){country=5;} if(str=="6"){country=6;} }//bellow it's the ajax //...... ajax process //Once done, the ajax, comes this function stateChanged(){ if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){ document.getElementById("speed" + country).innerHTML=xmlHttp.responseText; } } At the speed + country i need help, because the var country isn't read because it's inside other function. What do you suggest? Thanks in advance! Quote Link to comment Share on other sites More sharing options...
nogray Posted April 30, 2008 Share Posted April 30, 2008 make country global variable var country=0; function showResult(str){ if(str=="1"){country=1;} ...... Quote Link to comment Share on other sites More sharing options...
hip_hop_x Posted April 30, 2008 Author Share Posted April 30, 2008 , thank you Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.