tabs by Klaus Hartl, making external link open normally
Hi,
Nearly everything is working fine but one problem that i can't seem to resolve. I want to have one of my links which is an external link open as a new page and i can't seem to do this. I don't want this to open in a new window but in the current page. The reason for this is the external link is an externally hosted survey form and when it loads up via the ajax tabs the form no longer works. So i want one of the links to actually completely navigate way from the current page.
Any ideas on how to do this? and as i said everything works ok except this.
I'm using the following code
JS
<code>
$(document).ready(function(){ $("#nav > ul").tabs({fx: { opacity: 'toggle' } }); });</code>
HTML<code>
<div id="nav">
<ul>
<li>
<a href="9003#fragment-1">Introduction</a>
</li>
<li>
<a href="9003#fragment-2">Location</a>
</li>
<li>
<a href="9003#fragment-3">Agenda</a>
</li>
<li>
<a href="#fragment-1">Link 1</a>
</li>
<li>
<a href="#fragment-2">Link 2</a>
</li>
<li>
<a href="http://www.externalsite.com">Link 3</a>
</li>
<li>
<a href="#fragment-4">Link 4</a>
</li>
</ul>
</div></code>