I want to step through a javascript as it happens, but skipping the steps where the functions are in jQuery.
Is there any way this can be done?
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.
You can use
Step Overwhen you are debugging.Step Overwill simply go to the next line of code without going into the called method. This will make sure you don’t go into jQuery method.What you have probably been using is
Step Intowhich goes to the next line of code that will be executed. This makes you go into the jQuery method when you are debugging.In both Google Chrome and Firefox (with Firebug), the button
Step OverandStep Intoare right next to each other, just make sure you press the right one.