Hi there I am using the PLYR Plugin to embed a vimeo video on my site. I want to add a string ("&background=1") at the end of an iframe src to hide the controls.
I am doing it like this:
var target="&background=1";
$(function(){
$('iframe').each(function(){
$(this).attr('src', $(this).attr('src')+target);
});
});
But it doesnt work.
I appreciate any help.
Thanks.