function videoPanes() { $('table.videoPaneTable').each(function(){ $(this).replaceWith( $(this).html() .replace(//gi, "") .replace(/<\/td>/gi, "") .replace(/<\/tbody/gi, "<\/div") ); }); $('.videoPane').wrapAll('
'); $('#videoPaneWrapper').wrapInner('
'); $('.videoPane').each(function(){ var videoCode = $(this).find('.video > p').text(); $(this).find('.video').empty(); $(this).find('.video').append(''); }); } function resizeVideoFrame() { var frameWidth = $('.youtubeVideo').parent().width(); var frameHeight = Math.floor((frameWidth*9)/16); $('.youtubeVideo').attr('width',frameWidth).attr('height',frameHeight); } $(document).ready(function(){ if ($('table.videoPaneTable').length > 0) { videoPanes(); } resizeVideoFrame(); $(window).on('resize', function(){ resizeVideoFrame(); }); });