I'm not that good at Prototype at all, but wouldn't this be
equivalent?
setTimeout(function(){
myFunction.apply(this)
} , 1000)/ Johan On Jan 5, 3:43 pm, Bruce <[email protected]> wrote: > Is there a jQuery way of doing this Prototype bind? > > var func = myFunction; > setTimeout(func.bind(this), 1000); > > Thanks.

