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

The Archive Base Latest Questions

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

I haven’t been able to find a good stack overflow thread on this, so

  • 0

I haven’t been able to find a good stack overflow thread on this, so I wanted to spur a conversation on it.

What are the various approaches or ways people have for dynamically loading a page for a web application?

To clarify, imagine your web application is like a phone application – you may have various screens – a login screen, a details screen, a settings screen, etc. How would you go about defining them, and then loading them at the appropriate time?
I’d like to define the html for each page in a seperate file, and then load that specific file once the user ‘navigates’ to that page. I dont want to do an actual browser navigation, but just swap contents.

Any thoughts or recommendations?

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

    Are you looking for some sort of javascript lazy loading?

    I believe normally a map is built in which you register a specific resource name with its relative path. For example:

        resourcemap = { 
          homepage : "/contextroot/home.html",
          settings : "/contextroot/settings/settings.html",
          details : "/contextroot/details.html"
        };
    

    This can be taken many steps further by trying to keep a correlation between the key and the actual path value if needed.

    In the end, you’d be doing something like (psuedocode):

        showPage = function (resource, targetPane) {
          if(resourceMap[resource].cachedResponse)
            targetPane.innerHTML = resourceMap[resource].cachedResponse;
                          else {
            xhrRequest({
              url:resourcemap[resource],
              xhrComplete:function (result) {
                resourcemap[resource].cachedResponse = result;
                targetPane.innerHTML = result;
              }
            });
          }
        }
    

    then on your navigation event (such as button click):

        showPage("settings",contentElement);
    

    where contentElement is your target domElement you wish to fill with the returned HTML.

    This will go fetch the html page if it does not exist, or use the client’s local copy if already fetched before. Additionally, you could use the local storage in the browser assuming you are writing for modern-ish browsers.

    As a side note about the resourcemap :

    If you namespace the resources properly then you can implicitly know the url needed to get the html. The Dojo toolkit provides good examples of this. Namespacing in a similar fashion can save you some trouble as the directory structure of your app can be used to provide load paths as opposed to manual updates on the object. For example, if you want to load a page at /contextroot/homepage/home.html, then you’d simply invoke a fetch against contextroot.homepage.home.html instead of the following some sort of manually maintained value in the map.

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

Sidebar

Related Questions

I haven't been able to find much about this but am I the only
I haven't been able to find documentation that talk about how create.js.erb and destroy.js.erb
I haven't been able to find what these Xcode icons mean. Some you can
I haven't been able to solve this prolog exercise. I was hoping someone here
I haven't been able to find authorative explanations, microformats or guidelines for the following,
I haven't been able to do so due to all sort of missing dependencies
Haven't seen many Geneva related questions yet, I have posted this question in the
I haven't used C++ since college. Even though I've wanted to I haven't needed
I haven't seen this question anywhere else, I hope someone can help. I have
I haven't found any documentation on this or seen this done before, but is

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.