1

I am new to this whole javascript development. I am debugging in chrome developer tools, I know that F11 will step into the function, but what am doing is clicking F10 so I can just go over my code and see what happens. But what happens is that the debugger always go to jquery file, and then I have to go back to my file, put a breakpoint then click F8 to go back to my file.

How do I step through the code in my file, without being transferred into jquery code inside jquery.js file?

any help would be apreciated.

2 Answers 2

2

You can right click on the jquery.js file and select "blackbox script". This will cause this file to be ignored by the debugger

0
0

You can use :
Step out of current function (shift + F11) or (click on the below button)

enter image description here

6
  • Isn't this the same functionality as F10?
    – Eddie
    Commented Dec 11, 2016 at 22:40
  • No, F10 is step over next function Commented Dec 11, 2016 at 22:41
  • You mean shift F11 in the jquery file?
    – Eddie
    Commented Dec 11, 2016 at 22:43
  • If you can provide more details, that will be helpful
    – Eddie
    Commented Dec 11, 2016 at 22:44
  • You mean shift F11 in the jquery file? Yes . Commented Dec 11, 2016 at 23:38

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.