The front page of my site loads a lot of tables. The performance is realy bad.
Tables created in frames and pass generated html code to parent main window.
I added stopLoad() to my front page that
close all open frames, if user click on menu option.
Unfortunately, it is not stop frames - they continue to execute code.
How to stop it?
Or, may be, what is the strategy you use to improve performance?
Tables created in frames and pass generated html code to parent main window.
I added stopLoad() to my front page that
close all open frames, if user click on menu option.
Code:
function stopLoad()
{
window.frame1.innerHtml = ""; // Schedule Meassage boards
.....
window.frame8.innerHtml = "";
window.frame1.close(); // Schedule Meassage boards
...
window.frame8.close(); // load PO w/o BSR and UPC
}
Unfortunately, it is not stop frames - they continue to execute code.
How to stop it?
Or, may be, what is the strategy you use to improve performance?