V
vk
I have a situation where I have 3 frames. The first frame is dynamic
and contains javascript variables for use throughout the frameset page
and the other frames.
Everything works fine...except that the first frame NEEDS to be loaded
first so that the other pages can access its variables. What happens
in IE is that the frames load up randomly (or so it seems). So
sometimes everything blows b/c the first frame did not load first and
all variables are undefined, etc.
So...essentially, what I'd like to know is...is there any way to force
a frame to load?...or perhaps some other trick, etc.
A few things I've tried...
....A timer loop after first frame to pause...did NOT work
....document.close() and document.open() after first frame...to clear
cache...did NOT work
....I put an alert() after the first frame, and that somehow forces
things to load in the correct order. But I cannot keep that alert
there.
Can anybody suggest anything...PLEASE...this is killing me...
Thx in advance...B.
Here is a snippet of code...
vOutput = '<frameset framespacing="0" border="0"
rows="0,80,98%,34,0" frameborder="0">\n';
document.writeln(vOutput);
vOutput = ' <frame marginheight="0" scrolling="no" noresize
marginwidth="0" name="variables" target="variables" src="' + vModId +
'/Variables.htm">\n';
document.writeln(vOutput);
//Need to pause here
vOutput = ' <frame marginheight="0" scrolling="no" noresize
marginwidth="0" name="header" target="main" src="header.htm">\n';
document.writeln(vOutput);
vOutput = ' <frame marginheight="0" scrolling="auto" noresize
marginwidth="0" name="main" target="main" src="main.htm">\n';
document.writeln(vOutput);
vOutput = ' <frame marginheight="0" scrolling="no" noresize
marginwidth="0" name="footer" target="main" src="footer.htm">\n';
document.writeln(vOutput);
vOutput = ' <frame marginheight="0" scrolling="no" noresize
marginwidth="0" name="ping" target="ping" src="../../Refresh.asp">\n';
document.writeln(vOutput);
vOutput = ' <noframes><body><p>This page uses frames, but your
browser doesn't support them.</p></body></noframes>\n';
document.writeln(vOutput);
vOutput = '</frameset>\n';
document.writeln(vOutput);
and contains javascript variables for use throughout the frameset page
and the other frames.
Everything works fine...except that the first frame NEEDS to be loaded
first so that the other pages can access its variables. What happens
in IE is that the frames load up randomly (or so it seems). So
sometimes everything blows b/c the first frame did not load first and
all variables are undefined, etc.
So...essentially, what I'd like to know is...is there any way to force
a frame to load?...or perhaps some other trick, etc.
A few things I've tried...
....A timer loop after first frame to pause...did NOT work
....document.close() and document.open() after first frame...to clear
cache...did NOT work
....I put an alert() after the first frame, and that somehow forces
things to load in the correct order. But I cannot keep that alert
there.
Can anybody suggest anything...PLEASE...this is killing me...
Thx in advance...B.
Here is a snippet of code...
vOutput = '<frameset framespacing="0" border="0"
rows="0,80,98%,34,0" frameborder="0">\n';
document.writeln(vOutput);
vOutput = ' <frame marginheight="0" scrolling="no" noresize
marginwidth="0" name="variables" target="variables" src="' + vModId +
'/Variables.htm">\n';
document.writeln(vOutput);
//Need to pause here
vOutput = ' <frame marginheight="0" scrolling="no" noresize
marginwidth="0" name="header" target="main" src="header.htm">\n';
document.writeln(vOutput);
vOutput = ' <frame marginheight="0" scrolling="auto" noresize
marginwidth="0" name="main" target="main" src="main.htm">\n';
document.writeln(vOutput);
vOutput = ' <frame marginheight="0" scrolling="no" noresize
marginwidth="0" name="footer" target="main" src="footer.htm">\n';
document.writeln(vOutput);
vOutput = ' <frame marginheight="0" scrolling="no" noresize
marginwidth="0" name="ping" target="ping" src="../../Refresh.asp">\n';
document.writeln(vOutput);
vOutput = ' <noframes><body><p>This page uses frames, but your
browser doesn't support them.</p></body></noframes>\n';
document.writeln(vOutput);
vOutput = '</frameset>\n';
document.writeln(vOutput);