Hello guys, this is my problem.
I have a video tag, whose src is an url. Like this:
var video = $('video'); ///using prototype js framework
video.setAttribute('src',
'aNiceUrl');
The problem is that i need to get some data from the video HTML header, but i dont know how to get it. I need to get the data in the same moment i get the video, cant do more requests to 'aNiceUrl'
. The data doesnt have to come in the header, i simply need a way to get it. Any ideas?
BTW, i can see the data with firebug on the net tab, any ideas of how is he doing that?