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

  • Home
  • SEARCH
  • 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 6647389
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:31:54+00:00 2026-05-26T00:31:54+00:00

I have got a function, inside which are some simple expressions, adding nums, appending

  • 0

I have got a function, inside which are some simple expressions, adding nums, appending doms, etc.
Since I only have to call it once, so an anonymous function could do it. But which way should I choose and what’s the difference?

1: Shorthand for $(document).ready() {}) I seen this a lot,

$(function(){
    var something;
    ++something;
});

2: Found in jquery plugins. Is it binded to $(document).ready() too?

(function ($) {
    var something;
    ++something;
})(jQuery);
  • 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-26T00:31:55+00:00Added an answer on May 26, 2026 at 12:31 am

    The second one is not bound to the ready event.

    In detail. This:

    $(function(){  /* ... */ });
    

    needs a variable $ defined. Usually this variable exists when jQuery is loaded and points to the jQuery function.

    Subsequently, when you call the jQuery function with a function argument, jQuery is binding this function argument to the ready event. The above is equivalent to

    jQuery(function(){  /* ... */ });
    

    which is in turn a convenience shorthand for

    jQuery(document).ready(function(){  /* ... */ });
    

    Your second code snippet

    (function ($) { /* ... */ })(jQuery);
    

    does not rely on $ being defined or pointing to jQuery() (this can happen if multiple JS frameworks are loaded in parallel).

    To still have the convenience of $ within a certain region of code, it creates a function within which $ is defined and points to jQuery(). However, it is not bound to a DOM event.

    But this would be:

    (function ($) { 
       $(function(){  /* ... */ });
    })(jQuery);
    

    This set-up is used to minimize the conflict between JS frameworks or other pieces of code that rely on $. jQuery plug-in authors use it to write plug-ins that work under many environments.


    If you think the combined one is too complicated, jQuery also has a shorthand feature, which avoids variable conflicts and binds to document ready at the same time. But be careful, it only works on jQuery and has some downsides.

    jQuery(function($) { /* some code that uses $ */ });
    

    For more details, see these two articles:

    1. Using jQuery with Other Libraries
    2. .ready() @ api.jquery.com (Aliasing the jQuery Namespace)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have got a problem with calling a global function, which takes a pointer
I have got the following very simple code: function init() { var articleTabs =
I have got a C function in a static library, let's call it A,
Code is not running on .click when I have this: $(.cancel).click(function() { alert(got here);
We have got loads of options for php + MySQL + Apache combo... Which
I have got a python script which is creating an ODBC connection. The ODBC
I have got the following problem since the server has safe mode turned on,
I've got the following problem: I have rhtml (html minced together with ruby inside
I have a windows service written in c#. It has a timer inside, which
I am inside a function with some arguments. Let's say: __cdecl function(int a,int b,long

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.