I am working on an asp mvc-5 web application. and i am using these scripts:-
- jquery 1.10.2
- jquery-ui 1.8.24
- jQuery Validation Plugin 1.11.1
Now when i run the application inside visual studio 2013, the following exception will happen on IE10 , while there will not be any problem on chrome or firefox :-
Unhandled exception at line 1234, column 5 in http://localhost:49392/Scripts/jquery.validate.js
0x800a138f - JavaScript runtime error: Unable to get property 'call' of undefined or null reference
the code which will raise the error inside the jquery.validate.js is :-
function($) {
// only implement if not provided by jQuery core (since 1.4)
// TODO verify if jQuery 1.4's implementation is patible with older jQuery special-event APIs
if (!jQuery.event.special.focusin && !jQuery.event.special.focusout && document.addEventListener) {
$.each({
focus: 'focusin',
blur: 'focusout'
}, function( original, fix ){
$.event.special[fix] = {
setup:function() {
this.addEventListener( original, handler, true );
},
teardown:function() {
this.removeEventListener( original, handler, true );
},
handler: function(e) {
var args = arguments;
args[0] = $.event.fix(e);
args[0].type = fix;
return $.event.handle.apply(this, args);
}
};
function handler(e) {
e = $.event.fix(e);
e.type = fix;
**return $.event.handle.call(this, e);**//this will raise the exception
}
});
}
Can anyone adivce how i can solve this problem ? Thank
I am working on an asp mvc-5 web application. and i am using these scripts:-
- jquery 1.10.2
- jquery-ui 1.8.24
- jQuery Validation Plugin 1.11.1
Now when i run the application inside visual studio 2013, the following exception will happen on IE10 , while there will not be any problem on chrome or firefox :-
Unhandled exception at line 1234, column 5 in http://localhost:49392/Scripts/jquery.validate.js
0x800a138f - JavaScript runtime error: Unable to get property 'call' of undefined or null reference
the code which will raise the error inside the jquery.validate.js is :-
function($) {
// only implement if not provided by jQuery core (since 1.4)
// TODO verify if jQuery 1.4's implementation is patible with older jQuery special-event APIs
if (!jQuery.event.special.focusin && !jQuery.event.special.focusout && document.addEventListener) {
$.each({
focus: 'focusin',
blur: 'focusout'
}, function( original, fix ){
$.event.special[fix] = {
setup:function() {
this.addEventListener( original, handler, true );
},
teardown:function() {
this.removeEventListener( original, handler, true );
},
handler: function(e) {
var args = arguments;
args[0] = $.event.fix(e);
args[0].type = fix;
return $.event.handle.apply(this, args);
}
};
function handler(e) {
e = $.event.fix(e);
e.type = fix;
**return $.event.handle.call(this, e);**//this will raise the exception
}
});
}
Can anyone adivce how i can solve this problem ? Thank
Share Improve this question edited Jan 15, 2015 at 14:34 John John asked Jan 15, 2015 at 14:15 John JohnJohn John 1 6- 1 your jquery version please? – Pandiyan Cool Commented Jan 15, 2015 at 14:21
- 1 installing jquery migrate may solve this PM> Install-Package jQuery.Migrate – Pandiyan Cool Commented Jan 15, 2015 at 14:24
- @PandiyanCool jQuery version is 1.10.2 – John John Commented Jan 15, 2015 at 14:34
- i run the Install-Package JQuery.Migrate and it added the following script inside the Scripts folder "jquery-migrate-1.2.1.js" and this solve the issue on IE10 .. thanks. but ca you advice what will the jquery-migrate-1.2.1.js did exactly ? – John John Commented Jan 15, 2015 at 14:38
- 1 I think 1.2.1 version is fine – Pandiyan Cool Commented Jan 15, 2015 at 14:47
1 Answer
Reset to default 7installing jquery migrate may solve this PM> Install-Package jQuery.Migrate