The following code does not work as intended on IE8
```
function createDelegate(object, ev, method) {
var fn = function () {
var args = [];
args.push(ev);
if (arguments) {
for (var a in arguments) {
args.push(arguments[a]);
}
}
return method.apply(object, args);
};
return fn;
}
```
Replace with
```
function createDelegate(object, ev, method) {
var fn = function () {
var args = [];
args.push(ev);
if (arguments) {
for (var i = 0; i < arguments.length; i++) {
args.push(arguments[i]);
}
}
return method.apply(object, args);
};
return fn;
}
```
Comments: In the current v15.1 release of Ajax Control Toolkit, we have removed features from past releases, which were incomplete and experimental. This also applies to the so-called "jQueryzation". So, now jQuery is no more needed for Ajax Control Toolkit.
```
function createDelegate(object, ev, method) {
var fn = function () {
var args = [];
args.push(ev);
if (arguments) {
for (var a in arguments) {
args.push(arguments[a]);
}
}
return method.apply(object, args);
};
return fn;
}
```
Replace with
```
function createDelegate(object, ev, method) {
var fn = function () {
var args = [];
args.push(ev);
if (arguments) {
for (var i = 0; i < arguments.length; i++) {
args.push(arguments[i]);
}
}
return method.apply(object, args);
};
return fn;
}
```
Comments: In the current v15.1 release of Ajax Control Toolkit, we have removed features from past releases, which were incomplete and experimental. This also applies to the so-called "jQueryzation". So, now jQuery is no more needed for Ajax Control Toolkit.