Hey all,

I've tried searching everywhere... can't find anyone with this
problem?

I have an accordion with a few tabs. When you click on each tab it
ajax loads the content into the div from the header link.

  $(function() {
    $("#admin-results").accordion();
    $('#admin-results a').click(function(e) {
      var contentDiv = $('#admin-results-' + $(this).attr("id"));
      contentDiv.load($(this).attr("href"));
    });
  });

The content loads and the tab changes but it cannot set the height
properly. Each tab is always the same height regardless of how much
data is inside it.

Any ideas as to why it doesn't resize?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to