Originariamente inviato da whisher
Codice PHP:
var fndelayTimer(1000);
fn(function(){alert('pippo');})
//Oppure
delayTimer(1000)(function(){alert('pippo');}); 
oppure ancora:
codice:
var fn=function(){alert('pippo');}
delayTimer(1000)(fn);