well i was wondering how will i enable javascript debugging because even after entering the break point the debugger is not stopping there
well i was wondering how will i enable javascript debugging because even after entering
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.
visual studio will only debug a page open in IE. in visual studio you can select debug -> attach to process and find the appropriate process for the browser window. alternatively you can type
in the address bar and you should be prompted to debug the page, where you can then choose visual studio as a debugger. the html page you’re looking at will be listed under the solution items. you can set a breakpoint in the page and as long as you’re still debugging it’ll stop there next time it’s hit. note that in IE’s settings you have to uncheck the boxes that say “disable script debugging”.
for firefox, get the firebug addon. you can bring up the console with f12 and manually set a breakpoint or use the address bar trick above. you’ll have to enable script debugging in firebug before it will stop for anything.