Archive for the ‘JavaScript’ Category
Google Maps + IE8 Beta 1 = Epic Fail
Posted by: revoked in JavaScript, Programming, Tech on March 5th, 2008
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).
Remember folks, this is early beta software, rendering (most likely) browser specific hacks styling, so take this with a grain of salt.
And embedded
But wait! Not even Microsoft’s DOM based maps look good:
oh my little rgb to hex function
Posted by: revoked in JavaScript, Programming, Snippet on May 30th, 2007
how I love you
function rgb(r,g,b){
return r.toString(16) + g.toString(16) + b.toString(16);
}