JustinCann
11/21/2016 - 11:52 AM

Youtube embed converts a youtube watch url into a youtube embed url

Youtube embed converts a youtube watch url into a youtube embed url

//var url = "https://www.youtube.com/embed/SG-nqVOw_BY";
var url = "https://www.youtube.com/watch?v=SG-nqVOw_BY";

if (url.indexOf("watch") >= 0) {
	url = url.split('?v=')
  url = 'https://www.youtube.com/embed/' + url[1]
}

$('#output').html(url)