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.

To resolve this, we needed to change the plugin.

function showTree(c, t,x) {
  $(c).addClass('wait');
  $(".jqueryFileTree.start").remove();

  $.post(o.script, { dir: t ,type:x}, function(data) {
  $(c).find('.start').html('');
  $(c).removeClass('wait').append(data);
  if( o.root == t ) $(c).find('UL:hidden').show(); else $(c).find('UL:hidden').slideDown({ duration: o.expandSpeed, easing: o.expandEasing });
  bindTree(c);
},"html");

adding the ,"html")

share|improve this question
1  
Can you clarify what your actual question is please? – Andrew Marshall Feb 20 '11 at 19:59
I was posting this, because it wasnt up here, and after searching around awhile, we found the solution. Is there a better way to make sure that someone else can find what I was looking for ? – George Mcknight Feb 20 '11 at 20:05
Do you know what the "Ask Question" button means? – user216441 Feb 20 '11 at 20:09

closed as not a real question by Robert Harvey Feb 20 '11 at 22:11

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Add the "html" to the end of the post to resolve.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.