1
I have to get the SRC value of the Source tag of this code:
<video id="vp1_html5_FC" preload="auto" width="100%" height="100%" controls=""><source src="http://www.blogger.com/video-play.mp4?contentId=23bfbcf30d33ff96" type="video/mp4"></video>
I tried with the following script:
var el = document.getElementById("vp1_html5_FC");
var tag= el.document.getElementByTagName("source")[0].src;
alert(tag);
i love you kkk... It worked perfectly. Arigator
– Diego Queiroz
There’s only one tag
source
on the page ?– NoobSaibot
Yes... it’s a simple Html5 video page, but I’m getting all the links back to switch players using a webapp...
– Diego Queiroz