But I need help to get jQuery tabs on a page working when pretty URLs are enabled.
If I run default CMSMS so URL is index.php?page=page_name
With jQuery tabs code
Code: Select all
<div id='tabs'>
<ul>
<a href='#tabs-1'>Link to Tab 1</a>
<a href='#tabs-2'>Link to Tab 2</a>
</ul>
<div id='tabs-1'>
tab 1 content block goes here
</div>
<div id='tabs-1'>
tab 2 content block goes here
</div>
</div>
WHEN I enable pretty urls so they appear as domain_name/page.html
The tabs stop appearing as tabs - they are displayed as a list.
AND all tab links return to the home page.
They are converted to: domain_name/#tab-1
See: http://ballinacampers.com.au/index.php? ... -melaleuca this is how the page should look and work after pretty URLs are enabled.
Any help with resolving this would be very much appreciated.