Skip to content

Instantly share code, notes, and snippets.

@joaostein
Created February 23, 2016 20:54
Show Gist options
  • Save joaostein/11257fa9cb620f8e1301 to your computer and use it in GitHub Desktop.
Save joaostein/11257fa9cb620f8e1301 to your computer and use it in GitHub Desktop.
open-video
javascript:(function () {
var doc = document.querySelectorAll('.mwEmbedKalturaIframe')[0].contentWindow.document;
var video = doc.querySelectorAll('.videoDisplay video');
var videoUrl = video[0].getAttribute('src');
console.log(videoUrl);
window.open(videoUrl, '_blank');
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment