I have a list of iframe videos in my webpage.
This should stop all videos playing in all iframes on the page:
$("iframe").each(function() { var src= $(this).attr('src'); $(this).attr('src',src); });