fix for Uncaught TypeError: e.indexOf is not a function
fix for depreciated window load Uncaught TypeError: e.indexOf is not a function
at S.fn.init.S.fn.load (jquery-3.5.1.min.js:2)
at default.aspx:993
I found this error when upgrading from an older version of jquery to the latest version, you need to replace
$(window).load(function() {}
with $(window).on('load', function () {}
Javascript
// broken version -- this version needs to be replaced with the $(window).on('load', function () {
// $(window).load(function() {}
// fixed version
$(window).on('load', function () {
alert("Window Loaded");
});