Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am making a Greasemonkey script.

The information I need is in a meta tag. How can I access the "content" data of the meta tag when property="video"?

HTML:

<meta property="video" content="http://video.com/video33353.mp4" />
share|improve this question

3 Answers

up vote 7 down vote accepted

You can use this:

function getVideoContent() { 
   var metas = document.getElementsByTagName('meta'); 

   for (i=0; i<metas.length; i++) { 
      if (metas[i].getAttribute("property") == "video") { 
         return metas[i].getAttribute("content"); 
      } 
   } 

    return "";
} 
share|improve this answer
Thanks for the help, but I couldnt get this to work. – supercoolville Sep 23 '11 at 6:09
Find the updated script above. this should work! – Saket Sep 23 '11 at 6:15
got it. thank you so much! – supercoolville Sep 23 '11 at 6:31

Assuming it's the first `:

document.getElementsByTagName('meta')[0].getAttribute('content');
share|improve this answer
Your answer worked in my test, but unfortunately, its not the first meta tag, and sometimes the meta tags are in a different order. – supercoolville Sep 23 '11 at 6:09
1  
Not a good assumption, really. – Rimian Jul 12 '12 at 7:48
This answer is 10 months old. – Blender Jul 12 '12 at 8:18

In Jquery you can achieve this with:

$("meta[property='video']");

In JavaScript you can achieve this with:

document.getElementsByTagName('meta').item(property='video');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.