return specific values from youtube
- by user1631487
I am trying to write a small function that will allow a user to submit a specific youtube channel url, and then return the number of views on the channel. Anyobne have any ideas?
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p id="demo">Click the button to get the value of the attribute with the specified namespaceURI and name</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction()
{
var http;
if (window.XMLHttpRequest) {xhttp=new XMLHttpRequest();}
else {xhttp=new ActiveXObject("Microsoft.XMLHTTP");}
xhttp.open("GET","booksns.xml",false);
xhttp.send();
var xmlDoc=xhttp.responseXML;
var price=xmlDoc.getElementsByTagName("price")[0];
var x=document.getElementById("demo");
x.innerHTML=price.getAttributeNS("http://www.w3schools.com/NS","currency");
};
</script>
</body>
</html>