View Single Post
Old 11-07-2012, 04:10 PM   PM User | #1
ttkh2011
New to the CF scene

 
Join Date: Nov 2012
Posts: 2
Thanks: 1
Thanked 0 Times in 0 Posts
ttkh2011 is an unknown quantity at this point
Simple JS function call not working in IE or Chrome. Works in Firefox!

This simple code is working fine in Firefox but not IE or Chrome. Can you please help me?

<object width="533" height="300">
<param name="movie" value="http://www.youtube.com/v/2wBe3SDCcz8"></param>
<param name="wmode" value="transparent"></param>
<embed src="http://www.youtube.com/v/2wBe3SDCcz8" type="application/x-shockwave-flash" wmode="transparent"
width="533" height="300" id="myvideo">
</embed>
</object>
<script>
function videoplaying() {
var myvideo = "http://embed.break.com/MjM4NTM2Ng==";
var myEmbed = document.getElementById("myvideo");
myEmbed.setAttribute("src", myvideo);
return false;
}
</script>
<a href="javascript:void(0)" onclick="videoplaying();">Video</a>
ttkh2011 is offline   Reply With Quote