I have used the following code to add autplay to iframe video onclick.
Html:
<span id="stoprotate"></span><iframe src="http://www.youtube.com/embed/TJ2X4dFhAC0?wmode=transparent" frameborder="0" class="slide" allowtransparency="true" id="video" wmode="opaque"></iframe>
script:
$(document).on('click','#video',function(e){
$(".roundabout-in-focus #video")[0].src += "&autoplay=1";
$(this).unbind("click");
})
<a href="#">Stop auto play</a>
I need to remove autoplay
on click the stopautoplay link. How to do that?