Skip to content

Instantly share code, notes, and snippets.

@andershaig
Created November 22, 2011 22:51
Show Gist options
  • Save andershaig/1387309 to your computer and use it in GitHub Desktop.
Save andershaig/1387309 to your computer and use it in GitHub Desktop.
Create Videos iFrames
// YouTube iFrame Creator
function getVideo(id, height, width) {
var output = '';
var youtube_id = id;
output = '<iframe width="' + width + '" height="' + height + '" src="http://www.youtube.com/embed/' + youtube_id + '?rel=0&autoplay=1" frameBorder="0" allowfullscreen>';
return output;
}
// Usage
var width = 418;
var height = 313;
var id = $('#id').val();
var output = getEmbeddedPlayer(id,height,width);
$('#results').html(output);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment