jQuery Error “e.indexOf is not a function”
-
This error might be caused by the jQuery event-aliases like .load(), .unload() or .error() that all are deprecated since jQuery 1.8. Lookup for these aliases in your code and replace them with the .on() method instead. For example, replace the following deprecated excerpt:
$(window).load(function(){…});
with the following:$(window).on(‘load’, function(){ …});
Affected File: asset/frontend/js/jquery.js
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘jQuery Error “e.indexOf is not a function”’ is closed to new replies.