Go Back   CodingForums.com > :: Client side development > JavaScript programming > JavaScript frameworks

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
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
Old 11-07-2012, 06:46 PM   PM User | #2
xelawho
Senior Coder

 
xelawho's Avatar
 
Join Date: Nov 2010
Posts: 2,437
Thanks: 52
Thanked 454 Times in 452 Posts
xelawho will become famous soon enoughxelawho will become famous soon enough
the simplest way seems to be to use an iframe, same as youtube does:
Code:
<body>
<iframe id="myvideo" width="533" height="300" src="" frameborder="0"></iframe>
<script>
function videoplaying() {
document.getElementById("myvideo").src="http://embed.break.com/MjM4NTM2Ng==";
return false;
}
</script>
<a href="#" onclick="videoplaying();">Video</a>
</body>
xelawho is offline   Reply With Quote
Users who have thanked xelawho for this post:
ttkh2011 (11-07-2012)
Old 11-07-2012, 08:17 PM   PM User | #3
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
xelawho,

Thank you so much for your help. This is not ideal but it does the job for me temporary.
ttkh2011 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 06:40 PM.


Advertisement
Log in to turn off these ads.