Hi Guys
for this site http://www.villasinparadise.com/villapricelist.htm
I have built tabs with this extension and for each villas, I would like to give the possibility to come back to the previous tab
for example for this villa into 2 beds http://www.villasinparadise.com/agora.htm
I have built a link on the top left to come back and the code is <a href="http://www.villasinparadise.com/villapricelist.htm#twobed" onClick="TabbedPanels1.showPanel(2); return false;">Go Back to Two Bedroom Villas</a> but it's not working
the code for my Two Bedroom Villas is <li class="TabbedPanelsTab"><strong><a name="twobed" id="twobed"></a></strong>Two Bedroom Villas</li>
what did I miss ?
Thanks so much for your help
Thierrry D
This link should help you: http://labs.adobe.com/technologies/spry/samples/tabbedpanels/tabbed_pa nel_sample.htm
To open a panel from another document, you will need to pass a URL parameter as follows
Then follow this tutorial to add code to the page containing the panels http://foundationphp.com/tutorials/spry_url_utils.php
Gramps
Thanks for this precious information, however I am missing something ;(
code for calling the target is <a href="http://www.villasinparadise.com/villapricelist.htm?tab=2#TabbedPanels2">
code into this page is <li class="TabbedPanelsTab" tabindex="0">Two Bedroom Villas</li>
and I added this code also
<script type="text/javascript" src="SpryAssets/SpryURLUtils.js"></script>
<script type="text/javascript">
var params = Spry.Utils.getLocationParamsAsObject();
</script>
Thanks, Thierry
In villapricelist.htm change
var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
to
var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab: params.tab ? params.tab : 0});
In agora.htm change
<a href="http://www.villasinparadise.com/villapricelist.htm?tab=2#TabbedPanels2">Go Back to Two Bedroom Villas</a>
to
<a href="http://www.villasinparadise.com/villapricelist.htm?tab=2">Go Back to Two Bedroom Villas</a>
Gramps
North America
Europe, Middle East and Africa
Asia Pacific