Skip to content

Instantly share code, notes, and snippets.

@yllus
Created September 3, 2014 14:46
Show Gist options
  • Select an option

  • Save yllus/28bd42df7175a41869ff to your computer and use it in GitHub Desktop.

Select an option

Save yllus/28bd42df7175a41869ff to your computer and use it in GitHub Desktop.
function getVideoContent() {
var metas = document.getElementsByTagName('meta');
for ( var i = 0; i < metas.length; i++ ) {
if ( metas[i].getAttribute("http-equiv") == 'Content-Language' ) {
return metas[i].getAttribute("content");
}
}
return '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment