While debugging in JavaScript line in chrome developer tools, how can I move the control back to a few lines above?
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.
One workaround that may fit your needs (if the code doesn’t have a lot of side effects) is to set a breakpoint on the desired line and make a small yet meaningful change to your current function using LiveEdit. This way, the affected call frame(s) will be discarded from the call stack and the respective functions re-invoked, breaking at the necessary line.