Sometimes I can set breakpoints in my javascript, sometimes I can’t – why is this? I can’t seem to find whatever it is that would determine whether I can debug it or not. I know I can debug the dynamic page, but occasionally I’ll be able to set breakpoints in my original code.
Share
You can use following to debug javaScript
breakpointinside javascript. Using VS2010 you can debug the javascript. You will need to enable javascript debugging in IE by unchecking both of theDisable script debuggingfrom IE => Options => Advanced.console.logto log the messages from javaScriptHope this info helps you.