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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T11:07:10+00:00 2026-05-26T11:07:10+00:00

I try to load some js files dynamically,for example: function openInforWindow(){ //check if the

  • 0

I try to load some js files dynamically,for example:

function openInforWindow(){
  //check if the InforWinow.js has been loaded or not
  if(window.InforWindow){
    //do the right thing
  }
  else {
    loadJs('xxxxxx/InforWindow.js');
    // do the right thing
    //but here ,the infowindow is not definded yet.
  }
}

function loadJs(filename){
  var fileref=document.createElement('script')
  fileref.setAttribute("type","text/javascript")
  fileref.setAttribute("src", filename)
  if (typeof fileref!="undefined")
  document.getElementsByTagName("head")[0].appendChild(fileref)
}

How to make sure that the vars or functions in the js which is dynamically loaded can be add to the javascript execute environment so I can use them ?

  • 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-26T11:07:11+00:00Added an answer on May 26, 2026 at 11:07 am

    adding a script element isn’t a blocking operation, this means that your loadJs method returns immediately when your external script isn’t even loaded (nor interpreted). You have to wait for it to load.

    function openInforWindow(){
      //check if the InforWinow.js has been loaded or not
      if(window.InforWindow){
        //do the right thing
      }
      else {
        var loadHandler = function() {
           //do stuff with inforWindow 
        };
    
        loadJs('xxxxxx/InforWindow.js', loadHandler);
    
      }
    }
    
    function loadJs(filename, handler){
      var fileref=document.createElement('script');
      fileref.setAttribute("type","text/javascript");
      fileref.setAttribute("src", "js");
      fileref.onreadystatechange = function () {
        if (this.readyState == 'complete')handler();
      };
      fileref.onload = handler;
      if (typeof fileref!="undefined")
      document.getElementsByTagName("head")[0].appendChild(fileref);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have issues in Webkit(Safari and Chrome) were I try to load dynamically
Currently I am trying to load some Xaml files to create testdata. I used
I am trying to load some BitmapImages from files held on the file system.
I am traing to load some images on client browser with this code: function
Im a new web developer trying to load some xml files into a JSP
I need validate some attributes ONLY if they are not empty. For example the
I am using xml.net in web application When I try load xml through an
When I try to load a solution in Visual Studio 2008, it immediately closes.
I'm using the following HQL query to try and load a set of objects
I try to us wp_enqueue_script to load my javascript, here is my code: <?php

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.