I don't understand that line of code in my file.
my code looks like this:
}else{ //hide if visible
document.getElementById("scratchPad").style.visibility =
"hidden";
document.getElementById("scratchPad").style.left = "0px";
document.getElementById("scratchPad").style.top = "0px";
document.getElementById("scratchPad").style.height = "0px";
document.getElementById("scratchPad").style.width = "0px";
// remove existing rows, if any
while (document.getElementById("sPadData").rows.length > 0)
{
document.getElementById("sPadData").deleteRow(0);
}
}
but when I view it firebug this is what I see
}else{ //hide if visible
document.getOk = true
}
The code still executes, but the line #s no longer match so I cannot
create any breakpoints below this code:
What does it mean? And how can I reverse it?
--
You received this message because you are subscribed to the Google Groups
"Firebug" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/firebug?hl=en.