tabs - exception for one tab
Hi,
I hope someone could help me with my problem. Here is my code:
<div id="container">
<ul>
<li><a href="/tab1/" title="tab 1">tab 1</a></li>
<li><a href="/tab2/" title="tab 2">tab 2</a></li>
<li><a href="/tab3/" title="tab 3">tab 3</a></li>
<li><a href="/not-a-tab-page/">tab 4</a></li>
</ul>
</div>
<script type="text/javascript">
$(document).ready(function(){
$("#container > ul").tabs();
});
</script>
This works as originally intended, BUT I would like the fourth link/
tab to open as web page, not to be loaded in tabs container. So the
fourth link should behave as normal link.
Thanks for your help!