I have this code that is working on Firefox but not on IE or Chrome. Can someone please help? Thanks!!

<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>

You may read this around the bottom of the page. It states the bug about how IE read object tag instead of embeded tag. Also, it is about Google Chrome browser.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.