You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just ran into the same issue when migrating the old code. Thanks for the heads up. I switched the code from .load() to .on(); Works in my case. Minified code attached.
Hi... in the jQuery 3 you must use
$(window).on("load",()=>{});
instead of$(window).load(()=>{})
best regards
The text was updated successfully, but these errors were encountered: