A
AAaron123
In my javascript I have:
qq=document.getElementById("TextBox1")
The only way I know to debug javascript is with the debugger statement,
which I'm using.
QuickWatch shows a null for
document.getElementById("TextBox1")
In the debugger I scroll down and see that the HTML uses ctl00_TextBox1 for
the id so I try QuichWatch with
document.getElementById("ctl00_TextBox1")
And get the object description.
What am I doing wrong?
Thanks
qq=document.getElementById("TextBox1")
The only way I know to debug javascript is with the debugger statement,
which I'm using.
QuickWatch shows a null for
document.getElementById("TextBox1")
In the debugger I scroll down and see that the HTML uses ctl00_TextBox1 for
the id so I try QuichWatch with
document.getElementById("ctl00_TextBox1")
And get the object description.
What am I doing wrong?
Thanks