Advertisement
Guest User

Untitled

a guest
Aug 28th, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     function youtube_parser(url){
  2.         var regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#\&\?]*).*/;
  3.         var match = url.match(regExp);
  4.         if (match&&match[7].length==11){
  5.             return match[7];
  6.         }else{
  7.             alert("Url incorrecta");
  8.         }
  9.     }
  10.  
  11.     $('.url_video').html(function(){
  12.         var video_id = youtube_parser(this);
  13.         $('.img-video').append('<img src=http://i1.ytimg.com/vi/'+video_id+'/hqdefault.jpg width=595px>');
  14.  
  15.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement