How can I bind 2 functions to one click event to a button(ID=”Display”) in such a way that Function B() must wait until Function A() finishes and then executes using Jquery?
Thanks
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.
Unless you are not making any ansynchronous call in
A, the below code will execute B after A has completely executed.