unemployment Posted June 1, 2011 Share Posted June 1, 2011 How can I make my alert work? Right now it is undefined and I need to make my function in the variable global. Can this be done? if (json_goals === undefined) { ajax.get('/assets/ajax/user_goals.php', function (resp) { var json_goals = resp; return json_goals; }); } alert(json_goals); Quote Link to comment https://forums.phpfreaks.com/topic/238133-make-variable-global/ Share on other sites More sharing options...
requinix Posted June 1, 2011 Share Posted June 1, 2011 You cannot assume that the AJAX happens immediately. When you call .get the process will start but you can't know when it will complete. Meanwhile the rest of your code continues executing. If you need stuff to happen when the AJAX completes then put the code inside the callback function. Quote Link to comment https://forums.phpfreaks.com/topic/238133-make-variable-global/#findComment-1223658 Share on other sites More sharing options...
unemployment Posted June 1, 2011 Author Share Posted June 1, 2011 You cannot assume that the AJAX happens immediately. When you call .get the process will start but you can't know when it will complete. Meanwhile the rest of your code continues executing. If you need stuff to happen when the AJAX completes then put the code inside the callback function. I understand what you mean by completing, but I don't have a clue on what you mean when you say call back function. Please explain Quote Link to comment https://forums.phpfreaks.com/topic/238133-make-variable-global/#findComment-1223659 Share on other sites More sharing options...
requinix Posted June 1, 2011 Share Posted June 1, 2011 That function in the code you posted? Without a name? That's a callback because your code will be "called back" when something happens (in this case, that function executes when the AJAX completes). Quote Link to comment https://forums.phpfreaks.com/topic/238133-make-variable-global/#findComment-1223754 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.