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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T01:07:03+00:00 2026-05-19T01:07:03+00:00

I thought it would be convenient to have reusable code, especially for the navigation

  • 0

I thought it would be convenient to have reusable code, especially for the navigation bar because it will be the same across all of my pages. This way I won’t have to go through each page and manually edit each one individually when a change occurs.

It seems possible to use iframes, but I tried it and the whole page styling went out of whack. I can fix it but I’m wondering if there’s something similar.

It would be awesome if something like this could work:

var navbar = document.getElementById(‘navbar’);
navbar.innerHtml = url(‘navigation.txt’);

I’m currently working offline on my site so I don’t think I can make xmlhttp requests. Correct? At least I still have yet to get any ajax example to work. This is unfortunate because I think I could easily use this for my application.

Here’s my navbar markup. It’s not very complicated so I have a feeling I’ll just edit it manually in the end.

<nav>
    <ul id="navbar">
        <li><a href="biosketch.html">Biosketch</a></li>
        <li><a href="projects.html">Class Projects</a>
            <ul>
                <li><a href="projects.html#SeniorProject">Senior Project</a></li>
                <li><a href="projects.html#WindTurbine">Wind Turbine</a></li>
            </ul>
        </li>
        <li><a href="#">Resume</a></li>
        <li><a href="#">Work Experience</a></li>
        <li><a href="#">Contact Me</a></li>
    </ul>
</nav>
  • 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-19T01:07:04+00:00Added an answer on May 19, 2026 at 1:07 am

    Like it’s been said, typically this is done server side with an include for non AJAX sites. However, I think you can make use of google closure templates. Basically, you define a template in their templating language, that generates a javascript function you can call to render your HTML.

    http://code.google.com/closure/templates/docs/helloworld_js.html

    Example:

    --templates.soy
    
    {namespace templates}
    
    {template .nav}
    <ul id="navbar">
        <li><a href="biosketch.html">Biosketch</a></li>
        <li><a href="projects.html">Class Projects</a>
            <ul>
                <li><a href="projects.html#SeniorProject">Senior Project</a></li>
                <li><a href="projects.html#WindTurbine">Wind Turbine</a></li>
            </ul>
        </li>
        <li><a href="#">Resume</a></li>
        <li><a href="#">Work Experience</a></li>
        <li><a href="#">Contact Me</a></li>
    </ul>
    {\template}
    

    Then you run the following command to compile it into a javascript function

    java -jar SoyToJsSrcCompiler.jar --outputPathFormat templates.js  templates.soy
    

    This will generate a file called templates.js containing a function called templates.nav which you can call from your page like the following:

    document.getElementById('navbar').innerHTML = templates.nav();
    

    This is not even using the data merging, which would allow you to pass in a data object to render HTML that is not static. But I’ve only shown you this since it’s all you asked for. I know you could just paste the html into a JS string also, but you’s have to deal with the lack of syntax help from your editor.

    The one drawback is that this requires JS which you don’t seem to mind. However, if you wanted to support JS-less clients, you could generate the template on the server side. There is also a compiler that generates Java google closure methods. You can look for it on their website.

    Hope it helps.

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

Sidebar

Related Questions

I have a series of policy objects which I thought would be convenient to
We have a Rails app that has some pages that are available to all
I have some fundamental points/questions about OpenGL, not all involving code but concepts as
This is what I thought would be a simple select clause, however the following
I am looking to do something I thought would be fairly straight forward, Adding
I'm being stymied by what I thought would be the relatively simple task of
I am trying to Emit what I thought would be a simple object array
I am having problems finding a solution for what I thought would be straight
I'm trying to do something which I thought would be fairly simple. Get IIS
Currently I'm trying to do what I thought would be a simple task: Draw

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.