I'm using soundcloud widget html5: https://developers.soundcloud.com/docs/api/html5-widget and i've a problem:
Users can play soundcloud sounds on my page. When they click play i create a soundcloud widget with javascript. All is correct. But the dom of my page is often modified by javascript and when a soundcloud iframe is deleted soundcloud javascript api will bug: all future widget creation will fail on this part of code (because previous iframe is missing):
_player = SC.Widget(document.getElementById(_iframe_id));
firebug trace:
TypeError: e.contentDocument is null
Do you know a way to fix/bypass this ? Thank's !
Exemple code on jsbin: http://jsbin.com/adixoq/1/edit . For use it:
- Press button 1: Create a widget; when ready an alert message.
- Press button 2: Create second widget; when ready an alert message.
- Press button 3: Delete dom of iframe1, create third widget. The bug appear and ready event is not throwed