need2progm
Programmer
I have recently rebuilt my development server. After reinstalling visual studio 2003 the debugger (keyword) in the javascript (code in front) is not breaking out. I am having to pop alerts for debugging.. which is horrible. Can anyone give me some advice on how to re-enable this feature.
Example…
function ValueChanged(ID)
{
//this is not working… ARGH!!
debugger;
var checkAll = window.document.getElementById('UserControl'+ID+'_chkAll');
var checkAllValue = checkAll.checked;
.
.
}
Thanks to anyone who can help me out here!!!