Hi there any chance you could fix the IE8 Tab Control problem in ajax control toolkit?
I have tracked down the problem to the following line (not doing the same thing in IE8 and IE11).
Line 199 (jQuery.jQueryUIWidget.debug.js)
```
this.options = $.widget.extend({},
this.options,
this._getCreateOptions(),
options);
```
In IE8 the methods defined in the prototype aren't copied while on IE11 they are.
So when IE8 tries to access "opt.owner.get_tabs().length;" we get a "Object doesn't support this property or method" error.
I have tracked down the problem to the following line (not doing the same thing in IE8 and IE11).
Line 199 (jQuery.jQueryUIWidget.debug.js)
```
this.options = $.widget.extend({},
this.options,
this._getCreateOptions(),
options);
```
In IE8 the methods defined in the prototype aren't copied while on IE11 they are.
So when IE8 tries to access "opt.owner.get_tabs().length;" we get a "Object doesn't support this property or method" error.