Hi,
I have a html page where in js files are dynamically embedded
using JavaScript.
var script = document.createElement('script');
script.setAttribute("type","text/javascript");
script.setAttribute("src", filename);
if (script) {
document.getElementsByTagName("head")[0].appendChild(script);
}
I have "debugger;" statements in those embedded js files. The
firebug debugger stops for debugging but it does not highlight the
debugged js line. The embedded js file are not listed in the Scripts
tab of Firebug. Are there any ways to load that list with embedded js
files? Any firebug exposed methods? So that the debugger highlights
the debugged js line. It would be easier during development. Any ideas
please share.
Thanks,
Jerry.
--
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.