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
The example code on http://learn.jquery.com/using-jquery-core/document-ready/ doesn't work with current jquery 3.3 because it uses $( window ).load(function()
which has evidently been changed to $( window ).on('load', function()
The text was updated successfully, but these errors were encountered:
steveja42
changed the title
use of removed function: $( window ).load(
use of obsolete function: $( window ).load(
Oct 5, 2016
hcgernhardtiii
added a commit
to hcgernhardtiii/learn.jquery.com
that referenced
this issue
Nov 16, 2016
Removes all references to the obsolete .load() method and replaces them
with the appropriate .on( "load", function() { ... } ) reference.
fixesjquery#728
The example code on http://learn.jquery.com/using-jquery-core/document-ready/ doesn't work with current jquery 3.3 because it uses $( window ).load(function()
which has evidently been changed to $( window ).on('load', function()
The text was updated successfully, but these errors were encountered: