I have an application running in a HTA (MSFT HTML Application) that uses the same script file over and over again throughout frames; as this hits 9 in places and as the application is setup within various servers with caching set to immediate expire I'm trying to carve out some sort of performance in this ball of mud.
Is there a 'good' way to load the main script file in the top frame then excuting it within the frames i.e.
--- TOP WINDOW ----
var MainScript = function(){ return (function(){ all current functions etc here })(); };
--- SUB Frames ----
var FrameScript = top.MainScript;
FrameScript();
And how would this be affected by window scope (would it keep the top window scope or be in scope of the frame-window)