In Jquery there’s $(window).load() which happens after $(document).ready(), when the page has fully loaded. From what I understand $(document).ready() happens even before the page fully loaded.
In plain javascript there’s window.onload which corresponds to $(window).load() Jquery.
What javascript event corresponds to $(document).ready()?
In Jquery there’s $(window).load() which happens after $(document).ready(), when the page has fully loaded.
Share
The answer is here:
from jQuery source code