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

The Archive Base Latest Questions

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

Very basic question: I am coding a web app that has a handful of

  • 0

Very basic question: I am coding a web app that has a handful of pages. These pages have the usual shared elements: eg, the site’s header/masthead and a side-bar are present on all pages. The HTML is static (not dynamically generated, its “ajaxy-ness” is done client-side).

What is the best way of importing/”including” those common elements into my pages? The solution I am using is to have the HTML files contain empty place-holders

<div id="header"></div>
<div id="leftSideBar"></div>
(...)

and then do in jquery’s $(document).ready():

$.get("header.html", function(html) { $("#header").html(html); });
// ....

Is this the best way to do this? I’m new to web development. : )

I guess I could also dig up a “macro-like” code-generation tool that I would run on the HTML files to replace, eg, “#header” with the contents of header.html. That way loading a page would require a single request for a single HTML file, which sounds better.

What is the smart way to achieve this? I am sure this problem has been solved a thousand times.

EDIT: The server-side is coded in Python+cherrypy. (I am assuming it is reasonable to try to keep away from dynamically generating HTML when doing “web 2.0-ish” web apps. Please correct me if I am wrong. As I said, I am very new to this environment.)

Thank you for your insights,

lara

  • 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-13T07:12:29+00:00Added an answer on May 13, 2026 at 7:12 am

    If you want to include files, please consider using some backend language such as PHP or ASP. Javascript is not really meant to do this even if this would work.

    <?php include 'other_file.php'; ?>
    

    Using javascript to do this will lead, I think, to a poor SEO and the loading of the page might look weird for the end user. If you really don’t want to use a backend language, some IDE have a way to handle templates, you could look into that.

    Concerning frameworks, most of them have a way to handle templates. ASP.NET has the master page system, Ruby on Rails has layouts.

    Here’s an example using Rails :

    <html>
    ...
    <div id="content"> <%= yield %> </div>
    ...
    </html>
    

    Here all the content of a subpage will go into the “yield”. Here’s a link to learn more about that.

    Some frameworks can handle multiple place holders.

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

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer In answer to your direct question in bold - yes,… May 14, 2026 at 7:45 pm
  • Editorial Team
    Editorial Team added an answer Like this: document.DocumentNode.InnerText Note that this will return the text… May 14, 2026 at 7:45 pm
  • Editorial Team
    Editorial Team added an answer The MonoDevelop IDE is open source, and it already has… May 14, 2026 at 7:45 pm

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.