Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>There is a neat solution for you: <a href="http://www.stilbuero.de/jquery/tabs_3/" rel="nofollow noreferrer">http://www.stilbuero.de/jquery/tabs_3/</a></p> <p>Quick example:</p> <pre><code>&lt;head&gt; &lt;link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" /&gt; &lt;script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.tabs.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function(){ $("#tabs").tabs(); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="tabs"&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="#fragment-1"&gt;&lt;span&gt;One&lt;/span&gt;&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#fragment-2"&gt;&lt;span&gt;Two&lt;/span&gt;&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#fragment-3"&gt;&lt;span&gt;Three&lt;/span&gt;&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;div id="fragment-1"&gt; &lt;iframe&gt;IFrame1&lt;/iframe&gt; &lt;/div&gt; &lt;div id="fragment-2"&gt; &lt;iframe&gt;IFrame2&lt;/iframe&gt; &lt;/div&gt; &lt;div id="fragment-3"&gt; &lt;iframe&gt;IFrame3&lt;/iframe&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <h1>Update</h1> <p>In regards of your application:</p> <pre><code>&lt;SCRIPT type="text/javascript"&gt; $(document).ready(function(){ $("#tabs a").click( function() { $("#tabs-1").load(this.href); return false ; } ) ; $("#tabs a:first").click() ; }); &lt;/SCRIPT&gt; &lt;DIV id="tabs"&gt; &lt;DIV id="overview"&gt; &lt;A class="imagelink lookA" href="./toframe.html"&gt;Overviews&lt;/A&gt; &lt;/DIV&gt; &lt;DIV id="gallery"&gt; &lt;A class="imagelink lookA" href="./tawagpinoygallery.html"&gt;Gallery&lt;/A&gt; &lt;/DIV&gt; &lt;DIV id="reviews"&gt; &lt;A class="imagelink lookA" href="./trframe.html"&gt;Reviews&lt;/A&gt; &lt;/DIV&gt; &lt;/DIV&gt; &lt;div id="tabs-1"&gt;&lt;/div&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload