C
Christopher Benson-Manica
IE 5.0 apparently does not support the apply() method for function
objects - the following fails:
function foo() {
alert( this.length );
}
foo.apply( [] );
Is there a convenient way to add an apply() method to foo that would
allow this code to work as written?
objects - the following fails:
function foo() {
alert( this.length );
}
foo.apply( [] );
Is there a convenient way to add an apply() method to foo that would
allow this code to work as written?