Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Begginer in javascript, I'm trying to make a system tabs. All work fine, but when i want a tab with moveable content (in this exemple, i tried with a accordion), the height container div don't resize to child content.

$(document).ready(function() {

//Tabs init

$('#mask').css({'height':$('#panel-1').height()});

$('a[rel=panel]').click(function () {

    var panelheight = $($(this).attr('href')).height();

    $('a[rel=panel]').removeClass('selected');

    $(this).addClass('selected');

    $('#mask').css({'height':panelheight}); 

    $('#mask').scrollTo($(this).attr('href'), 500);     

    return false;
});

//Accordion init

$(".toggle_container").hide(); 

$("h2.trigger").click(function(){

$(this).toggleClass("active").next().slideToggle(300);  

   }); 
});
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.