Why does Googles Chrome Browser trace into "jquery-1.7.2.min.js" file when I set no breakpoints inside?
I am using "jquery-1.7.2.min.js" in my web pages. I use a second <script> tag for all of my personal javascript/jquery code. I set breakpoints in my <script> tags but I never set any breakpoints in the jquery library source code. Yet, everytime I try to debug my custom javascript/jquery code which is always in a script tag in the actual html page, Google's Chrome browser insists on tracing into the jQuery library source code, even though I have not set any breakpoints inside that file.
I have to hit <Shift>+<F11> an ungodly amount of times when I am debugging my simple code just to get to one breakpoint in my code. Why is this happening and how do I stop it?
Thanks for reading.