I would like to know if I can use the debugger in VS 2012 for javascript code in a webbrowser control for a winform application. I am not talking about debugging in a web browser such as IE, as that is not how I run the code. I tried to place a "debugger"; in my javascript code, but it still goes through it and doesn't stop.
Here is an example of how I use it.
function addDeleteButton(poly, imageUrl) {
debugger;
var path = poly.getPath();
path["btnDeleteClickHandler"] = {};
source
share