Well...
I have a functions called loadX, where X are numbers...
within these functions, i have code to build different menus...for example...
function load1()
{
if( window.menu1 )
{
return;
}
window.menu1 = new Menu();
menu1.addMenuItem("1", "some action");
menu1.addMenuItem("2", "someaction");
menu1.fontSize = 11;
menu1.disableDrag = true;
menu1.writeMenus();
}
now, I do NOT load these menus, because i have way too many and my browser crashes. instead, i read that the writeMenus() function could be called anytime... from http://developer.netscape.com/viewsource/smith_menu2/smith_menu2.html. I use the menu.js functions/classes that they provide.
i call these functions within my HTML body within my anchor tag by calling onMouseOver="load1();"
it works ok on Netscape 4.7, but it crashes on IE. any ideas??? is this just not possible through IE??
if not, then what ideas do you have as far as making IE not crash due to the fact that I have many menus..... thanks.