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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T12:20:12+00:00 2026-05-13T12:20:12+00:00

I am trying to dynamically load a JavaScript file by adding a script element

  • 0

I am trying to dynamically load a JavaScript file by adding a script element to the head element, after which I test for the presence of a function defined inside that file to check that the load succeeded.

If I use this code:

var scriptElem = document.createElement("script");
scriptElem.type = "text/javascript";
scriptElem.src = 'myfile.js';
document.getElementsByTagName('head')[0].appendChild(scriptElem);

the new function isn’t defined afterwards. However, if I alter the last line to use jQuery, like so:

$('head').append($(scriptElem));

it is. As another clue, in the first case Firebug shows the new script element in the HTML tab, whereas in the second case it doesn’t.

I have tried using jQuery.getScript() to do this, but that didn’t work either. Also, if it’s relevant, the call is being made from a function supplied to jQuery via:

$(document).ready();

Can someone please explain what’s going on?

  • 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-13T12:20:12+00:00Added an answer on May 13, 2026 at 12:20 pm

    It looks like jQuery might be giving you a bit of help. From my hacking, $(‘head’).append(scriptElem); does append the script, but it doesn’t parse it immediately. So if you put a function inside called “function something(){};” then it’s defined on the following line using the JQuery append() method, but not using the native appendChild. (That’s as you’ve described.) However, if you put setTimeout(function(){alert(something)},1); then it is defined. It looks as if JQuery is managing to append the script tag but also force the browser to parse it immediately.

    The key seems to be in the domManip function of the JQuery source code which contains the line:

    if ( scripts ) {
       jQuery.each( scripts, evalScript );
    }
    

    which then goes to this:

    function evalScript( i, elem ) {
        if ( elem.src ) {
            jQuery.ajax({
                url: elem.src,
                async: false,
                dataType: "script"
            });
        } else {
            jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" );
        }
    
        if ( elem.parentNode ) {
            elem.parentNode.removeChild( elem );
        }
    }
    

    So JQuery treats script tag appends as a special case, and some other JQuery magic goes and evaluates them synchronously, hence your function is available immediately.

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

Sidebar

Ask A Question

Stats

  • Questions 307k
  • Answers 307k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Only for IPv6 addresses with the IPAddress.IsIPv6SiteLocal property. You'll have… May 13, 2026 at 9:36 pm
  • Editorial Team
    Editorial Team added an answer No AS3 doesn't have enum, you have to code them… May 13, 2026 at 9:36 pm
  • Editorial Team
    Editorial Team added an answer You might be interested in my experiences with Freezable: I… May 13, 2026 at 9:36 pm

Related Questions

I am trying to dynamically load a user control in an asp.web site. However
I am trying to dynamically load a progressive jpeg using ActionScript 3. To do
I am trying to implement an activity similar to InvokeWorkflow, which could dynamically load
Working on cs193p (stanford online videos of iphone programming), I am working on Presence1
I am using jQuery UI tabs to have a tab where I can search

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.