I want to create two vertical divs using HTML5, CSS3 and JQuery. One Div contains URLs and another div contains the content. When I clicked on a link on div1 the related page should show up in div2.

Example of Page 1 being active:

   DIV1                        DIV2
 **http://www.yahoo.com**      Yahoo Home Page
   http://www.bing.com
   http://www.google.com

Example of Page 2 being active:

  DIV1                         DIV2
  http://www.yahoo.com         Bing Home Page
**http://www.bing.com**
  http://www.google.com 
link|improve this question

50% accept rate
Have you tried anything? – Strelok Dec 12 '11 at 10:29
What have you tryed? This smell like plz-send-me-teh-code question – Strae Dec 12 '11 at 10:30
whathaveyoutried.com – Holger Just Dec 12 '11 at 10:32
feedback

4 Answers

up vote 0 down vote accepted

Working demo at: http://jsfiddle.net/thejase/XWNVn/

HTML

<div id="toc">
    <ul>
        <li><a href="http://www.yahoo.com">Yahoo</a></li>
        <li><a href="http://www.bing.com">Bing</a></li>
        <li><a href="http://www.google.com">Google</a></li>
    </ul>
</div>
<iframe id="content">

</iframe>

CSS

#toc { width: 33%; float: left; margin-right: 1%; }
#content{ width: 66%; margin-top: 1px; border: none; outline: 1px solid black; }

JavaScript

$(function() {
    var $content = $('#content');
    $('#toc a')
        .click(function() {
            $content.attr('src', $(this).attr('href'));
            return false;
        });
});
link|improve this answer
Thanks for your valid input. I want to display another page or URL on second div content. For Ex : Div1 Contains Google|Rrediff|Yahoo Div2 should show the respected pages. If I click on Google , Div2 should display Google page. – Srikanth Chilukuri Dec 13 '11 at 5:34
@SrikanthChilukuri: I updated the code to fit your new requirements. I also better explained your question for future readers. – Jason T Featheringham Dec 14 '11 at 11:37
feedback

You can try something like the following (make sure all your page links have the .page class):

$(function() {
  $('#DIV1').find('a.page').click(function() {
    var html = $(this).html();
    $('#DIV2').html(html);
  });
  return false;
});
link|improve this answer
feedback

Like this:

HTML5:

<div class="wrapper">
    <nav>
        <ul>
            <li>Page 1</li>
            <li>Page 2</li>
            <li>Page 3</li>
        </ul>
    </nav>
    <div class="content">Content 1</div>
    <div class="content" style="display: none;">Content 2</div>
    <div class="content" style="display: none;">Content 3</div>
</div>

CSS3:

.wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: box;
}

nav li {
    cursor: pointer;
}

jQuery:

$('nav li').click(function() {
    $('.wrapper .content').hide().eq($(this).index()).show();
});

See a working demo at http://jsfiddle.net/RNyg8/

link|improve this answer
feedback

you can try this:

<div id="container"> 
    <div id="left">
    sample
    </div>
    <div id="right">
    sample
    </div>
</div>

style for this:

#container {
width: 500px;
}
#left {
width: 250px;
float: left;
background-color: #777;
padding: 5px;
}
#right {
width: 250px;
float: right;
background-color: #777;
padding: 5px;
}

this will get you two vertical divs. If you wish to add padding, width of container DIV should be adjusted accordingly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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