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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T21:59:26+00:00 2026-05-17T21:59:26+00:00

With Javascript, I’m wondering what’s the current best way to load my code onto

  • 0

With Javascript, I’m wondering what’s the current best way to load my code onto the page (without jQuery) after the rest of the page has been loaded. So like a window.onload…

I was looking at several options but they all seem outdated and not-completely cross-browser friendly.

Does this look like it would be best? It does work, I got it from online tools but I think it spawned from Scott Andrews

 function addEvent(obj, evType, fn) { 
 if (obj.addEventListener){ 
   obj.addEventListener(evType, fn, false); 
   return true; 
 } else if (obj.attachEvent){ 
   var r = obj.attachEvent("on"+evType, fn); 
   return r; 
 } else { 
   return false; 
 } 
}

function init () {
// do something
}

addEvent(window, 'load', init); 

Even though it works and passes all my tests and seems quite flexible, I’m a little worried about this approach, because

  1. I don’t fully understand it

  2. It seems old, Scott Andrews page is from 2001!

  3. Opera Technical support didn’t like it, see “The voice of Opera” on online tools

Is this the best way to do this?

  • 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-17T21:59:27+00:00Added an answer on May 17, 2026 at 9:59 pm

    From The Javascript Source

    /* This script and many more are available free online at
    The JavaScript Source!! http://javascript.internet.com
    Created by: Caleb Duke | http://www.askapache.com/ */
    
    //------------------------------------
    // heavily based on the Quirksmode addEvent contest winner, John Resig
    // addEvent
    function addEvent(obj,type,fn){
        if(obj.addEventListener) obj.addEventListener(type,fn,false);
        else if(obj.attachEvent){
            obj["e"+type+fn]=fn;
            obj[type+fn]=function(){obj["e"+type+fn](window.event);}
            obj.attachEvent("on"+type,obj[type+fn]);
        }
    }
    
    //------------------------------------
    // removeEvent
    function removeEvent(obj,type,fn){
      if(obj.removeEventListener) obj.removeEventListener(type,fn,false);
      else if(obj.detachEvent){
        obj.detachEvent("on"+type,obj[type+fn]);
        obj[type+fn]=null;
        obj["e"+type+fn]=null;
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In JavaScript, what is the best way to determine if a date provided falls
JavaScript post request like a form submit shows you how to submit a form
JavaScript allows functions to be treated as objects--if you first define a variable as
JavaScript does funky automatic conversions with objects: var o = {toString: function() {return 40;
Javascript: The Good Parts is a great book. Often I find myself reading passages
In Javascript: How does one find the coordinates (x, y, height, width) of every
My JavaScript is pretty nominal, so when I saw this construction, I was kind
In JavaScript, the this operator can refer to different things under different scenarios. Typically
What JavaScript keywords (function names, variables, etc) are reserved?
In JavaScript, you can use Lazy Function Definitions to optimize the 2nd - Nth

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.