Lego2012
12/13/2016 - 4:11 PM

To wrap YouTube videos with a div using jQuery

To wrap YouTube videos with a div using jQuery

jQuery(document).ready(function($) {
    
    $("div.post iframe[src*='youtube.com']").wrap('<div class="video-embed"></div>');

});