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've got a Facebook tab app where I'm playing some audio:

<audio id="rf_audio" autoplay="autoplay" loop="loop">
  <source src="audio.mp3" type="audio/mpeg" />
  <source src="audio.ogg" type="audio/ogg" />
  Your browser does not support the audio tag.
</audio>

When I navigate away from this page using Internet Explorer, the audio just keeps on playing. Various pause/play Javascript controls otherwise work fine.

I notice on IE, when navigating after my tab app loads:

  • Some pages take the form of: http://www.facebook.com/mypage#!/some_link (where mypage is my Facebook Page)
  • Hovering over some_link, status bar shows http://www.facebook.com/mypage#!/some_link
  • This seems to load content at some_link without triggering a reload
  • Audio keeps playing for these pages

While on other browsers:

  • They will load: http://www.facebook.com/some_link
  • Pages reload and audio stops as expected

Anyone encountered this before?

share|improve this question
Resolved as per: stackoverflow.com/questions/12240393/… – Daniel May Sep 3 '12 at 19:56

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.