Skip to content

Instantly share code, notes, and snippets.

@samarpanda
Created September 27, 2013 04:01
Show Gist options
  • Save samarpanda/6723926 to your computer and use it in GitHub Desktop.
Save samarpanda/6723926 to your computer and use it in GitHub Desktop.
var v = document.querySelector('video'),
sources = v.querySelectorAll('source'),
last = sources[sources.length-1];
last.addEventListener('error', function(ev){
var d = document.createElement('div');
d.innerHTML = v.innerHTML;
v.parentNode.replaceChild(d, v);
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment