[thelist] another browser bug wrt CSS & frames on the Mac
James Spahr
james at designframe.com
Mon May 8 19:27:38 2000
on 5/8/00 6:30 PM, Joanna N Goslicka at Joanna.N.Goslicka@aero.org wrote:
> Is this a bug in
> Mac Netscape 4.6.1?
yes. try this (compliments of MacroMedia):
var Nav_browser = document.layers;
if (Nav_browser) {
var beginWidth = innerWidth;
var beginHeight = innerHeight;
}
function reloadWindow() {
if (innerWidth != beginWidth || innerHeight != beginHeight) {
location.reload();
}}
if (Nav_browser) {onresize = reloadWindow }
James.