Skip to content Skip to sidebar Skip to footer

How To Change The Value Of Embed Src With Javascript?

I have just begun to learn JS. I am trying to change the value of embed src in the tag present in my HTML code. But am unable to do so with the following code I've written - HTML

Solution 1:

It may depend on the browser and the type of the embedded object, how you have to change the object(for example there are special methods for flash-movies like Play() , but the object isn't a flash-movie at the begin)

A common way is to replace the whole embed-node with a new <embed>:

functionshowGame(whichgame){
  var source=whichgame.getAttribute("href");
  var game=document.getElementById("gameHolder");
  varclone=game.cloneNode(true);
  clone.setAttribute('src',source);
  game.parentNode.replaceChild(clone,game)
}

Solution 2:

It works also if you change param src only

<OBJECTclassid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><EMBEDid="movie"src="first.swf" "></EMBED></OBJECT><ul><liname='moviename'>first.swf</li><liname='moviename'>second.swf</li><liname='moviename'>third.swf</li></ul><scripttype="text/javascript">var names=document.getElementsByName("moviename");
	for (var i = names.length - 1; i >= 0; i--) {
		names[i].addEventListener("click", myFunction);
		functionmyFunction() {
    		document.getElementById("movie").setAttribute("src", this.innerHTML);
		}
	}
</script>

Solution 3:

you can set src of embed tag in javascript, for that you must have to write your embed tag in javascript like below example :

function onclickofSomething() {
    $('#IDOfParentElement').html("<embedtype='application/x-mplayer2'pluginspage='http:///www.microsoft.com/Windows/MediaPlayer/'src='" + "<%=YourVideoPath%>" + "YourVideoName" + ID + ".mp4/wmv" + "'autostart='1'showstatusbar='1'enabled='1'showdisplay='1'showcontrols='1'width='630'height='380'></embed>");
}

you can also see below url : need to set video file name using javascript http://www.webdeveloper.com/forum/showthread.php?53086-how-to-change-the-src-in-lt-embed-gt-using-javascripthttp://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/16626/how-to-change-the-the-value-of-src-in-embed-using-javascript

Post a Comment for "How To Change The Value Of Embed Src With Javascript?"