web technology is a way of life
11 Mar
Here’s a jQuery object creation tip for a problem that I just ran into while coding:
This code works fine in Firefox 3, but not in IE 7:
jQuery(document.body).prepend('<div id="A"></div>');
var $A = jQuery('A');
alert($A.attr('id')); // undefined
So instead use the .prependTo function to instantly get the newly created object:
var $B = jQuery('<div id="B"></div>')
.prependTo(jQuery(document.body));
alert($B.attr('id')); // B
It is also cleaner looking.
The Livescribe Pulse smartpen gets an app store. This little pen is quite amazing, and it just shows that the business model of an app store is already changing the market for every type of electronic device. So when does my…
The Ghostwire (DSiWare) game looks great and reminds me a lot of Fatal Frame.
FloorPlanner is an interesting bit of software built in Flash that allows you design your home in 2D and view in 3D.
The new Stargate Universe [Philosphocal] teaser looks awesome. I stopped watching Atlantis a bit ago because it got boring, I hope this pumps up the energy as BSG did. It has Lou Diamond Philips and Ming-Na in it, that could make…
Here’s a plethora of well designed RSS Feed icons for free!