Chuyển đổi URL YouTube thành Embed Code sử dụng JQuery

by Phan Nhật Chánh

HTML

<div id="comment-holder">
    http://youtu.be/EfdiHPeT2Sg
    http://www.youtube.com/watch?v=EfdiHPeT2Sg
</div>

JavaScript

$('#comment-holder').html(function(i, html) {
    var re  = /(?:http:\/\/)?(?:www\.)?(?:youtube\.com|youtu\.be)\/(?:watch\?v=)?(.+)/g,
        vid = '<iframe width="420" height="345" src="http://www.youtube.com/embed/$1" frameborder="0" allowfullscreen></iframe>';
    return html.replace(re, vid);
});