jQuery v3.0 deprecates the .load()
function which has me in a bind because my jQuery scripts require that images be loaded before they run. Does anyone know a way to apply what was previously coded as
$(window).ready(function() {
but without using the .load()
lead in?
$(window).ready(function()
definitely does NOT work, as it triggers before the images are loaded.
I am trying to find a solution which works well with a jQuery function. I am aware of Javascript .onload
but am not sure how to mesh that as a lead in for jQuery routines.
Thank you!