Embed Object
-
I want to show the selected video clip in the asp page.so am using the embed object and iwant to pass the selected videos path to that object.i tried lot but none of them is working.embed object code below i used javascript to pass the value to the object but it is not working javascript follows function playAudio(){ var doc = document.getElementById('path'); var doc1 = document.getElementById('media'); doc.value=hdVideo.value; doc1.src=hdVideo.value; } hdVideo is a hidden field,am setting value in this hidden field from their am taking the value.if am doing window.alert am getting the value,suppose if am hardcoding this value in the embed object it is working.but i want to pass the value at run time. Then body onload event i called this javascript.