Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6901441
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:40:27+00:00 2026-05-27T07:40:27+00:00

What are differences between $(document).ready(function(){ //my code here }); and $(window).load(function(){ //my code here

  • 0

What are differences between

$(document).ready(function(){
 //my code here
});

and

$(window).load(function(){
  //my code here
});

And I want to make sure that:

$(document).ready(function(){

}) 

and

$(function(){

}); 

and

jQuery(document).ready(function(){

});

are the same.

Can you tell me what differences and similarities between them?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T07:40:28+00:00Added an answer on May 27, 2026 at 7:40 am
    $(document).ready(function() {
      // executes when HTML-Document is loaded and DOM is ready
      console.log("document is ready");
    });
    
    
    $(window).load(function() {
      // executes when complete page is fully loaded, including all frames, objects and images
      console.log("window is loaded");
    });
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

    Query 3.0 version

    Breaking change: .load(), .unload(), and .error() removed

    These methods are shortcuts for event operations, but had several API
    limitations. The event .load() method conflicted with the ajax .load()
    method. The .error() method could not be used with window.onerror
    because of the way the DOM method is defined. If you need to attach
    events by these names, use the .on() method, e.g. change
    $("img").load(fn) to $(img).on("load", fn).1

    $(window).load(function() {});
    

    Should be changed to

    $(window).on('load', function (e) {})
    

    These are all equivalent:

    $(function(){
    }); 
    
    jQuery(document).ready(function(){
    });
    
    $(document).ready(function(){
    });
    
    $(document).on('ready', function(){
    })
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is the difference between $(window).load(function() {}) and $(document).ready(function() {}) in jQuery?
What is the difference between $(document).ready(function() { //some code here }); and $(function() {
What are the differences between JavaScript's window.onload and jQuery's $(document).ready() method?
Is this jQuery code (function(jQuery){ })(jQuery); equivalent to $(document).ready(function () { }); If yes,
Can you list the difference between onload() and $(document).ready(function(){..}) functions in the using jQuery?
Any difference between these two statements? $(document).ready(function() { // Code }); $(function() { //
Can someone tell me the difference between: $(document).ready(function() { }); and: var someVar =
What is the difference between these two functions? 1: $(document).ready(function myfunc() { function dosomething()
What's the difference between window.location and document.location? Should both of them reference the same
Is there any difference between using: $(document).ready(function(){ vs. $(function(){ Does one of these work

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.