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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T22:28:59+00:00 2026-06-04T22:28:59+00:00

I currently ran into a problem where a lazy loaded javascript would execute twice

  • 0

I currently ran into a problem where a lazy loaded javascript would execute twice using internet explorer – and ONLY internet explorer (currently version 9). Firefox and chrome works. Here is my code:

injectExternalJavaScript: function(fileUrl) {
    return jQuery.Deferred(function(deferred) {
        var script = document.createElement('script');
        script['src'] = fileUrl;
        script['type'] = 'text/javascript';
        var head = document.getElementsByTagName("head")[0];
        var done = false;
        // Attach handlers for all browsers
        script['onload'] = script['onreadystatechange'] = function() {
            if (!done && (!this.readyState || this.readyState === "loaded" || this.readyState === 'complete')) {
                done = true;
                script['onload'] = script['onreadystatechange'] = null;
                head.removeChild(script);
                deferred.resolve();
            }
        };
        head.appendChild(script);
    }).promise();
}

I already found this posting and changed my code according to it but still ie is executing my script twice. You guys got any ideas?

Edit: This is my solution

injectExternalJavaScript: function(fileUrl) {
    return jQuery.Deferred(function(deferred) {
        var script = document.createElement('script');
        script['src'] = fileUrl;
        script['type'] = 'text/javascript';
        var head = document.getElementsByTagName("head")[0];
        var done = false;
        // Attach handlers for all browsers
        var cb = function() {
            if (!done && (!this.readyState || this.readyState === "loaded" || this.readyState === 'complete')) {
                done = true;
                script['onload'] = script['onreadystatechange'] = null;
                head.removeChild(script);
                deferred.resolve();
            }
        }
        if (script.addEventListener) {
            script.addEventListener('load', cb, false);
        } else {
            script['onreadystatechange'] = cb;
        }
        head.appendChild(script);
    }).promise();
}
  • 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-04T22:29:01+00:00Added an answer on June 4, 2026 at 10:29 pm

    Try this

    s = document.createElement("script");
    s.src="myscript.js";
    if(s.addEventListener) {
        s.addEventListener("load",callback,false);
    }else if(s.readyState) {
        s.onreadystatechange = callback;
    }
    document.body.appendChild(s);
    function callback() { console.log("loaded"); }
    

    taken from http://msdn.microsoft.com/en-us/library/ie/hh180173(v=vs.85).aspx

    which for you would be…

    injectExternalJavaScript: function(fileUrl) {
        return jQuery.Deferred(function(deferred) {
            var script = document.createElement('script');
            script['src'] = fileUrl;
            script['type'] = 'text/javascript';
            var head = document.getElementsByTagName("head")[0];
            var done = false;
            // Attach handlers for all browsers
            var cb = function() {
                if (!done && (!this.readyState || this.readyState === "loaded" || this.readyState === 'complete')) {
                    done = true;
                    script['onload'] = script['onreadystatechange'] = null;
                    head.removeChild(script);
                    deferred.resolve();
                }
            };
            if ( script.addEventListener ) {
                script.addEventListener('load',cb, false);
            } else {
                script.onreadystatechange = cb;
            }
            head.appendChild(script);
        }).promise();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Currently developing a PHP framework and have ran into my first problem. I need
I am currently developing a custom WordPress theme and ran into a problem. I
I'm currently messing around in FORTRAN 77 and I've ran into a problem that
I currently ran into a problem I can not really solve by myself: I
im currently learning jQuery and have ran into a problem. I am trying to
I'm currently working on a medium-sized web project, and I've ran into a problem.
I'm currently working on a test plan and ran into a possible problem and
Im currently working on a website for work experience and ran into a problem
I am currently working on a WYSIWYG web editor. The problem i ran into
I'm currently experimenting with JOGL, and I ran into a problem which is really

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.