General Community > HTML/CSS

Tabbed Pages [HTML]

(1/2) > >>

Kcmartz:
I use Dream Portal, and I have a page set up. I would, like on www.smfpacks.com, have tabbed pages. Nibogo said it's HTML tabs. I am searching, but can anybody here help me? I would like a few pages tabbed, not all of them.

Kcmartz:
Bump. I still would love this please.

Suki:
search for "jquery tabs"  http://jqueryui.com/demos/tabs/


or another JavaScript framework like prototype:

http://livepipe.net/control/tabs

Kcmartz:
I installed JQUERY and referenced it correctly but I cannot figure out the JQUERY tabs system.
Here is the coode I used:

--- Code: ---<script src="http://www.kcmartz.com/jquery/jquery.js"></script>

<meta charset="utf-8">
<script>
$(function() {
$( "#tabs" ).tabs();
});
</script>
<div class="demo">

<div id="tabs">
   <ul>
      <li><a href="#tabs-1">Nunc tincidunt</a></li>
      <li><a href="#tabs-2">Proin dolor</a></li>
      <li><a href="#tabs-3">Aenean lacinia</a></li>
   </ul>
   <div id="tabs-1">
      <p>Tab 1 content</p>
   </div>
   <div id="tabs-2">
      <p>Tab 2 content</p>
   </div>
   <div id="tabs-3">
      <p>Tab 3 content</p>
   </div>
</div>

--- End code ---

Suki:
http://www.kcmartz.com/jquery/jquery.js    it gives me a not found page.


<script>  should be    <script type="text/javascript">

Navigation

[0] Message Index

[#] Next page

Go to full version