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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T02:12:55+00:00 2026-06-03T02:12:55+00:00

I am a new learner of javascript, the following code is from the javascript

  • 0

I am a new learner of javascript, the following code is from the javascript definitive guide.

function addEvent(elem, evtType, func)
{
   if (elem && typeof(elem) == "object")
   {

      if (elem.addEventListener)
      {
         elem.addEventListener(evtType, func, false);
      }

      else
      {
         elem["on" + evtType] = func;
      }
   }
}

why it add

  if (elem.addEventListener)
  {
     elem.addEventListener(evtType, func, false);
  }

but the window.onload works ok under every browsers. the following is my test example.

<script type="text/javascript">
         window.onload=myFuntion();
        function myFuntion(){
            alert("test");
        }
    </script>
</head>

<body>

    <h1> testtste </h1>
</body>

it works ok under IE ff.

  • 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-03T02:12:58+00:00Added an answer on June 3, 2026 at 2:12 am

    Direct assignment is not robust.

    … and your code isn’t running the function on load anyway. It is running it immediately and assigning the return value (undefined) to the onload object.

    If we fix that, then a demonstration:

      <script type="text/javascript">
          window.onload=myFuntion;
    
          function myFuntion(){
                alert("test");
           }
      </script>
      <script type="text/javascript">
          window.onload=myOtherFunction;
    
          function myOtherFunction(){
                alert("test2");
           }
      </script>
    

    The event gets overwritten. Only one function will fire.

    … the example from the definitive guide isn’t very good though. It falls back to direct assignment (which makes it rather pointless) instead of trying the old proprietary APIs (e.g. attachEvent for IE 8 and lower) that would allow multiple event binding.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am a new learner of javascript, from a book, i know there are
I'm kind of new in the websocket, I learned the client-side code (in JavaScript)
When coding new javascript heavy websites, which order or web browser do you code
New Question I am looking for a way in Javascript to get the parent
New to javascript, but I'm sure this is easy. Unfortunately, most of the google
I am a new visual basic learner and I already have some difficulties in
I am a new learner of html and jquery. Please help me how I
I am a very new zend framework and phpunit test learner. I have a
I need to generate the following XML: <Learner xmlns=some.domain.api> <ActivationDate>1999-05-31T11:20:00</ActivationDate> <EmailAddress>String content</EmailAddress> <ExpirationDate>1999-05-31T11:20:00</ExpirationDate> <FederalId>String
Very new to AJAX, but have learned a bit from online tutorials. If I

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.