Saturday 28 March 2009 at 8:30PM local time, wherever you live on planet earth. Today, Saturday March 28 at 8:30PM your local time you can do something for our planet by switching off your lights for just one hour. You can go to the Earth Hour website and register to let everyone know that you will VOTE EARTH today. The goal is 1 billion people and the results will be presented at the Global Climate Change ...
Here's some of my personal DOM manipulation code: Code: Object.extend = function(o1, o2) { for (var x in o2) if (o2.hasOwnProperty(x)) o1[x] = o2[x]; return o1; }; Object.extend(Object, { copy: function(o) { return Object.extend({}, o); }, fromArray: function(o) { var r = {}; Array.map(function(pair) { r[pair[0]] = pair[1]; }, a); ...
Object.extend = function(o1, o2) { for (var x in o2) if (o2.hasOwnProperty(x)) o1[x] = o2[x]; return o1; }; Object.extend(Object, { copy: function(o) { return Object.extend({}, o); }, fromArray: function(o) { var r = {}; Array.map(function(pair) { r[pair[0]] = pair[1]; }, a);
Updated 04-06-2009 at 12:47 AM by Twey