Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a menu with several options, I would like to know how to load different HTML into the same div (called #content) depending on the buttons you press of the menu.

I have this code for the menu:

<div id="mainmenu">
<ul id="menu">
<li><a href="#">Accueil</a></li>
<li><a href="#">Qui suis-je?</a>
<ul>
<li><a href="#">Biographie</a></li>
<li><a href="#">Discographie</a></li>
</ul>
</li>
<li><a href="#">Porfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>

What do I need to do to send, for example, "index.html" into div#content when I press in the menu the option "Accueil"?

share|improve this question
Try javascript ajax. Simpliest way - to use jquery load function. See my code here: hg.skellla.tk/retracker/src for example. It does almost what do you want. Jquery load function example goes here hg.skellla.tk/retracker/src/1d31fb69bc3b/retracker.js#cl-206 – Alex Jun 23 '12 at 22:00

3 Answers

Using jQuery ajax you can do it

HTML

<div id="mainmenu">
    <ul id="menu">
        <li><a href="index.php">Accueil</a></li>
       <li><a href="the url you want to load for this menu">Qui suis-je?</a>
    <ul>
</div>​

JAVASCRIPT(jQuery)

​​$(function(){
    $('#menu li a').on('click', function(e){
        e.preventDefault();
        var page_url=$(this).prop('href');
        $('#content').load(page_url);
    });
});

jQuery load

share|improve this answer

You can use jQuery, it makes stuff like this easy:

Then you can do this:

$('#content>div').load('index.html');

You can either put this in onclick on some button, or in other place in your javascript code...

share|improve this answer

if you want to insert html:

$('a#id_button').click(function(){
   $('div#id_div').html('what html i want to insert');
});

if you want to insert outer html page

$('a#id_button').click(function(){
   $('div#id_div').load('html_page.html');
});

You need the latest version of jquery, and all wrapped in the $(document).ready(function(){});

Please comment for more details.

share|improve this answer

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.