How to Update Two div at same time with Two different response by using ajax;
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Ajax requests are asynchronous. so you can save first response, send second request in first request callback and in second callback function update divs with first and second responses. this way you can be sure that both responses arrived and ready to be processed.