Is the issue where you cant set a breakpoint on the first line of a function fixed in orcas? I've got no idea how many times i've had to do something like this:
function foo(){
var q = 0;
q = 1;
// actual code begins here
var myDiv = document.createElement("div");
...
just so I could set a breakpoint on line 5.
If the answer I provided is useful or informative please check the "answer" button.
Warning: Code is often uncompiled and possibly started life written on the back of a napkin. Beware typos.
JeffreyABeck...
All-Star
16423 Points
3329 Posts
Javascript Debugging
Mar 02, 2007 04:45 PM|LINK
function foo(){ var q = 0; q = 1; // actual code begins here var myDiv = document.createElement("div"); ...just so I could set a breakpoint on line 5.Warning: Code is often uncompiled and possibly started life written on the back of a napkin. Beware typos.