Notify when a page is loaded
|
|
Is it possible to make a script that will make some sort of notification when any page is done loading? I am on a slow connection, so sometimes I have to wait a minute for a page to load, and I want it to tell me when the page is finished loading. |
|
|
This should work... window.addEventListener('load', function(e) { alert("page loaded!"); }, true);
|
