I am trying to debug some problems using IE 8 developer tools.
However, after running the code below, the debugger generates an error "Source code is not available for this location"
window.onload = function() { tabberAutomatic(tabberArgs); };
What does it mean?
The above code is part of the code below, which basically launches the tabberAutomatic function after the document has finished loading:
var oldOnLoad; if (!tabberArgs) { tabberArgs = {}; } oldOnLoad = window.onload; if (typeof window.onload != 'function') { window.onload = function() { tabberAutomatic(tabberArgs); }; } else { window.onload = function() { oldOnLoad(); tabberAutomatic(tabberArgs); }; }
I am trying to debug the problem described in the previous browser question by showing a progress bar as it progresses, even when the page is loaded
Thanks for the inputs !!
source share