Browsing archives for 'JavaScript'

Google Maps + IE8 Beta 1 = Epic Fail

JavaScript,Programming,Tech 5 March 2008 | 17 Comments

The front-end engineers certainly have their work cut out for them with the release if IE8 on the horizon. Albeit that this IS a Beta, and the FIRST of all public Betas, but still, all my sites generally mostly work (except those using google maps).

oh my little rgb to hex function

JavaScript,Programming,Snippet 30 May 2007 | 0 Comments

how I love you function rgb(r,g,b){ return r.toString(16) + g.toString(16) + b.toString(16); }