Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Stop YouTube video playing when overlay is closed Reply To: Stop YouTube video playing when overlay is closed

#263824
grimski
Participant

So would something like the following be ok or does it need to be more specific (ID) than that?

$(document).on("click", ".sizeguide-popup-close", function() {
    $(".sizeguide-popup-container").removeClass('reveal');
    $('html,body').removeClass('noscroll');
    $("header.mainHeader").css("position", "fixed").css("z-index", "9999999");
    $('.rte__video-wrapper iframe').get(0).stopVideo();
});

Don’t have access at home so thought I’d ask. Trying to get access now!