I embedd youtube movies with the code below:
<iframe id="ytplayer" type="text/html" width="840" height="470" src="http://www.youtube.com/embed/Bag1gUxuU0g?wmode=transparent&autoplay=0&autohide=1" frameborder="0"></iframe>
As you can see in src attribute there is a variable autoplay=0. I wrote two line script in jQuery which should set the autoplay variable to 1.
var title = $("iframe#ytplayer").attr("src");
title.replace("autoplay=0", "autoplay=1");
But it doesn't work. How can this be done properly?
Regards, David
You aren't modifying the src attribute.
$("iframe#ytplayer").attr("src", $("iframe#ytplayer").attr("src").replace("autoplay=0", "autoplay=1"));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With