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.

I want to clear the content of panel. This is my code to create panel.

  directionsDisplay.setPanel(document.getElementById('panel'));

Now when I press the back button and again content of panel is not remove and new content append the previous content.

Please help me. Thanks in advance.

share|improve this question

1 Answer

If your using jQuery you can use $('#panel').empty() to clear the content within.

share|improve this answer
Thanks @jonathandey, its working. – upender Apr 3 '12 at 9:20

Your Answer

 
discard

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

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