DTE :]

Monday, April 23, 2012

Mengubah URL YouTube menjadi Video

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

Lihat Demo

Lolos untuk dua bentuk URL YouTube seperti ini:

http://youtu.be/-joKveiaabA
http://www.youtube.com/watch?v=-joKveiaabA

Sumber: How to Convert a YouTube Video URL to the Iframe Embed Code, using jQuery

Labels: , , ,

25 Comments:

Post a Comment



<< Home