I downloaded Firebug and tried to use it to debug JS for a site that uses frames.
As far as I understand, when I go to the Script tab in Firebug, I would see the JS functions on aspx and JS in any files that are included, and I could set breakpoints.
However, all I see on this site is:
</head>
<frameset>
<frame src="../company/HostPage.aspx name="mainFrame">
<noframes></noframes>
</frameset>
</html>
Do I understand Firebug correctly?
source
share