Change youtube url to embedded url using javascript in phonegap. Applied for both IOS and Android
here i used iframes to play videos ;
function getId(url) {
var regExp = /^.*(youtu.be\/|v\/|u\/\w\/|embed\/|watch\?v=|\&v=)([^#\&\?]*).*/;
var match = url.match(regExp);
if (match && match[2].length == 11) {
return match[2];
} else {
return 'error';
}
}
<iframe class='framlist' width='100%' height='250' id='+VideoID+'src='https://www.youtube.com/embed/" + myId + "' seamless></iframe>
No comments:
Post a Comment