Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a menu bar with links which are in the header. when you click the link, i want to just change the content in the main div. i'm thinking of doing it in php, but you will have to reload the page. So i need to do it in javascript, but i dont know javascript.

here is my menu code in the header div:

<ul id="nav">
    <li><a href="#">Enter Information</a></li>
    <li><a href="#">View Records</a></li>
    <li><a href="#">View Upcoming</a></li>
</ul>
share|improve this question
2  
And where does the new content come from? Is it already in the page (add that to the code in your question), or from the server, requiring ajax? Does this need to be plain JavaScript, or would you be willing to use a library? – David Thomas Jul 27 '11 at 20:47
What kind of content do you need to load into the main div? – ajax81 Jul 27 '11 at 20:47
1  
Time to learn some JavaScript. – Matt Ball Jul 27 '11 at 20:50
the content will be a form for one link and basically a type of database for the other 2. I have a form.html file for the link for the form. – Emily Jul 27 '11 at 20:52
@Emily, Have you found the answer for your question? – Rajagopal 웃 May 24 '12 at 12:38

6 Answers

If you think about using PHP, I guess that you have to load dynamic content. For this, I advice you to use AJAX

The easiest is to use a framework, like the famous Jquery. Example here

share|improve this answer

here i am assuming that you get your content with a function call as content()

var list=document.getElementById('nav');
var links=list.getElementsByTagName('a');
var header=document.getElementById('header');
for (var i=0;i<links.length;i++)
{
links[i].onclick=function() {
header.innerHTML=content();       //here you can use something else to generate the content
}
}
share|improve this answer
I don't think using browser specific javascript is the best way to write a menu system. – Jason Jul 27 '11 at 21:01
@Jason wats browser specific in this? – lovesh Jul 27 '11 at 21:06
in general this style of javascript will lead to a browser specific implementation, especially if one tries to develop a full featured menu system. the power of frameworks like jquery is that they normalize the individual browsers javascript engine, so the developer doesn't have to deal with them. – Jason Jul 27 '11 at 21:14
@Jason i agree this will freak out IE users but will work well for DOM compliant browsers and he didnt say he wanted to use jquery – lovesh Jul 27 '11 at 21:24

In order to dynamicly load content (e.g. from a server using php/sql) without having to reload the website Ajax is exactly what you need.

Inlineframes (mentioned before), however, should not be used for they are deprecated.

W3schools provides a very basic but straightforward tutorial on Ajax.

share|improve this answer
Or you can put all the markup in one page within <div> tags that have the attribute style="display: none;" and use javascript to change the display to "block" while simultaneously setting other content areas to "none". That is if your content sections are not very large. Otherwise, dynamic content should be handled as Milten suggests. Also, this is very easily handled either way with a javascript library like jQuery or Prototype. – Silkster Jul 27 '11 at 21:08

You want to use jquery to build something like this. If you are serious about building web apps you need to learn how to use it (or a similiar framework like MooTools)

For this particular problem I would use an existing menuing system, here's the first list of jquery based menus that I found, but there are many more.

share|improve this answer

You don't need any anchor elements. W3 example

<script>
$(document).ready(function() {
    $('.menu').click(function() {
            $("div").load('somecontent.txt');       
    });
});
</script>

<ul>
    <li class="menu">Enter Information</li>
    <li class="menu">View Records</li>
    <li class="menu">View Upcoming</li>
</ul>
share|improve this answer
But she would need jquery; which isn't mentioned in her question. Or tagged therein. – David Thomas Jul 27 '11 at 20:56
@user597419 good suggestion +1 – lovesh Jul 27 '11 at 21:02
Very true, maybe I'll try to edit later with a jqueryless example. Thanks for pointing it out. – Danny Jul 27 '11 at 21:03
this code snippet requires jquery, and the snippet is not a good example of how to create a menu. – Jason Jul 27 '11 at 21:03
I will use whatever I need to use. But the only thing i know is html and php – Emily Jul 27 '11 at 21:10

Depending on the type of content, you have a few options available to you. If you need to load a new page into the main content, you can use iframes and some javascript. If you need to load simple text, you can simply use javascript.

Based on your feedback, you'll do something like this (note- I'm shooting from the hip regarding syntax, but this is generally what your code will need to look like):

<a href="#" onclick="UpdateIFrame('mypage.html')">Link 1</a>

<iframe id="MainContent">
</iframe>

<script>
   function UpdateIFrame( newPageAddress ){
     document.getElementById("MainContent").contentWindow.location = newPageAddress;
   }
</script>
share|improve this answer
i basically need to load pages if possible. what is the javascript that i will need? – Emily Jul 27 '11 at 20:53
1  
I updated with code. Keep in mind -- this is basic javascript and will accomplish what you want done...but at some point when you've developed a little more, you should use jquery and update the code. – ajax81 Jul 27 '11 at 21:47
Also, someone is eventually going to tell you not to use iframes. I'm going to save them the trouble of argument and link to the already-had debate: stackoverflow.com/questions/755795/are-iframes-html-obsolete – ajax81 Jul 27 '11 at 21:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.