You can use Javascript to capture the link you are clicking and then make
an Ajax call to the server. Then the output is placed into you "right
column".
Pseudo-code:
<script type="text/javascript" src='path/to/jquery.js'></script>
<script>
function loadThatPage(pageToLoad) {
$('#yourcontentcol').load(pageToLoad);
}
</script>
<div class="container-fluid">
<div class="row-fluid">
<div class="span4">
<ul>
<li><a href="" onclick="loadThatPage('link1.html'); return
false;">link 1</a></li>
<li><a href="" onclick="loadThatPage('link2.html'); return
false;">link 2</a></li>
</ul>
</div>
<div class="span8" id="yourcontentcol">
</div>
</div>
</div>
The load example is found here:
http://api.jquery.com/load/
This is just 1 of a million ways to handle something like this. And as
mentioned, it is Pseudo-code: and I did not actually test it. I just
created it for a reference for you.
Hope this helps.
- J e f f C o n k l i n -
- http://www.getoutsidenj.com
- http://twitter.com/GetOutsideNJ
- http://www.carabs.com
On Wed, Jul 3, 2013 at 2:11 PM, JazzKeyboardist <[email protected]> wrote:
> Ok, so I just realized that the <frameset> and <frame> tags are not
> supported in HTML5. Options?
>
>
> On Wednesday, July 3, 2013 1:06:08 PM UTC-5, JazzKeyboardist wrote:
>>
>> I am using <class="container-fluid"> and I want to target the right
>> column with the output of links clicked that are in the left column. Do I
>> need to incorporate use of the HTML5 <frame> tag to accomplish this?
>
> --
> You received this message because you are subscribed to the Google Groups
> "twitter-bootstrap" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>
--
You received this message because you are subscribed to the Google Groups
"twitter-bootstrap" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.