lunedì 11 ottobre 2010

DDL Butti

Ho di recente letto questa affermazione:

Un disegno di legge che sembra uscito dalla penna di un uomo che non ha vissuto l'ultimo decennio, né seguito la rivoluzione del mondo dell'informazione che si sta consumando sotto gli occhi di tutti.

Guido Scorza

Guido Scorza non avrebbe trovato parole migliori per trovarmi d'accordo...

martedì 21 settembre 2010

Image prefetch with javascript

In order to perform image prefetching with javascript we need to create an Image object and insert an url in its 'src' global variable, as follows:

var img = new Image()
img.src = 'http://my_url.jpg'


Then we can attach handlers in order to be advised when fetching operation completes or when it goes wrong:

img.onload = function() {
// remove placeholder and show image
}

img.onerror = function() {
// remove placeholder and print that image loading went wrong
}


That's all, enjoy