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 8170371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T21:07:03+00:00 2026-06-06T21:07:03+00:00

The following on DOM ready function, if I have 2 functions that use this

  • 0

The following on DOM ready function, if I have 2 functions that use this declaration:

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

Now should I use two tags, one for each function or should I declare both functions in one of these tags, both inside the: $(document).ready(function(){my two Functions here});?

<script>
    $(document).ready(function(){my Function here});
</script>

Thank You

  • 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-06-06T21:07:03+00:00Added an answer on June 6, 2026 at 9:07 pm

    You can use two. There is no harm in it and this allows you to do modular coding. For example, it allows you to keep relevant pieces of code together.

    As an example, suppose you have two JavaScript widgets, both are independent of each other, both in their own separate files, both present at different locations on the page, either of them may or may not be present on the page. Instead of creating a hodge-podge of scripts you can keep separate them like this:

    <script>
        var ads = {};
        $(document).ready(function(){
            // do something with ads
        });
    </script>
    
    <script>
        var tracker = {};
        $(document).ready(function(){
            // do something with tracker
        });
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two list boxes and some JQuery function that does the following: $(document).ready(function
I have the following code: $(document).ready(function(){ $(.uiCloseButton).click(function(e) { e.preventDefault(); var element = $(this).parents('.uiOverlay'); alert(element);
I have the following HTML: <img src=image.jpg id=image /> and that JavaScript: jQuery(document).ready( function($)
I have the following function to remove a DOM element div, $('#emDiv').on(click, ':button[data-emp-del=true]', function
right now , I use jQUery(document).ready to inject javascript into a div. All is
I am currently making use of Simon Willson's addLoadEvent function to add functions that
In the following code: $(document).ready( function () { var hideInit = function () {
I have the following function: <script type=text/javascript> function changeText(elem){ var oldHTML = document.getElementById(elem).innerHTML; var
So essentially on page load I want to do the following: <script> $(document).ready(function ()
Say I have the following DOM element in my piece of code: <div id=test>

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.