[jQuery] Tabs plugin, using iframes
I want to load some external data into the content part of the page. This only works with ajax:
<pre><code>$('#container').tabs({ remote: true });</code></pre>But I want to be able to load external pages, I want to use an iframe instead. Is this possible?
I guess I could use the load event, and manually set the source of an iframe. But wouldn't that ruin the functionality of the Tabs plugin? It would be great if I can use <code>fxAutoHeight: true</code> together with the iframe.
Kia