Quick post on a very common methodology I've been using to chain events to the window.onload event in pure JavaScript:
if (window.onload == null) {
window.onload = loadAutoSubmitScript;
} else {
var ol = window.onload;
window.onload = function() { ol(); loadProc(); }
}
function loadProc() { alert("The window is loaded"); }
This should work for pretty much every page you use.
Over and Out
- Philosophy, Idiocy, Internet Strategy, .Net Development and JavaScript Web Development
30/04/2009
03/04/2009
Google Street View Coming To Toronto
I had the privilege of witnessing the Google's street view car as it canvassed downtown Toronto yesterday.
Although I have a feeling the Google's street view car was stalking me, I will still grant Google the rights to use my image on their street view.
Here are the precise details of where I should appear in Toronto. Let's keep our fingers crossed for now!
View Larger Map
Although I have a feeling the Google's street view car was stalking me, I will still grant Google the rights to use my image on their street view.
Here are the precise details of where I should appear in Toronto. Let's keep our fingers crossed for now!
View Larger Map
01/04/2009
Blackberry AppWorld Released
Here is the Blackberry AppWorld:
http://www.blackberry.com/select/appworld/
Here is a list of the featured applications:
http://na.blackberry.com/eng/services/appworld/featured.jsp
http://www.blackberry.com/select/appworld/
Here is a list of the featured applications:
http://na.blackberry.com/eng/services/appworld/featured.jsp
Subscribe to:
Posts (Atom)