jQuery UI-Tabs with iframes
Hi, I'd like the jQuery UI-Tabbar to render the content not to a <div>
but to an iframe.
Is this possible?
I tried the option "panelTemplate: '<iframe></iframe>',", but this
results in empty iframes...
I don't know how to set the iframes' src-Tag.
HTML:
<div id="tabs">
<ul>
<li><a href="filter.php" >Filter</a></li>
<li><a href="data.php">Data</a></li>
<li><a href="job.php">Job</a></li>
</ul>
JS:
$("#tabs").tabs({
panelTemplate: '<iframe></iframe>'
});
Thanks, Josch