ui tab problem
ui tab problem
hi,
I have this problem
have a div, when click enable a tabs menu. Problen is that tabs
doesn't work. Tabs menu load when the div is click but when i click
some tab it's doesn't load any content at all...
here the jquery code
<script type="text/javascript">
jQuery.fn.fadeToggle = function(speed, easing, callback) {
return this.animate({opacity: 'toggle'}, speed, easing,
callback);};
$(function() {
$('.tabs').hide();
$('.xfissa').bind('click', function() {
var $tabs = $(this).next('.tabs')
.toggle()
.tabs()
});
});
</script>
and html
<div id="tabs<? echo $cod['id']; ?>" class="tabs">
<ul id="navlist">
<li><a href="#divname<? echo $e; ?>">Descrizione</a></li>
<li><a href="#divname<? echo $f; ?>">Foto</a></li>
<li><a href="#divname<? echo $g; ?>">Mappa</a></li>
</ul>
<div id="divname<? echo $e; ?>" class="hiddencontent"><? echo
$desc; ?></div>
<div id="divname<? echo $f; ?>" class="hiddencontent">foto</div>
<div id="divname<? echo $g; ?>" class="hiddencontent">mappa</div>
</div>
please any suggestions
thank
franco