Skip to content

Instantly share code, notes, and snippets.

@kalashnikovisme
Created May 16, 2016 18:34
Show Gist options
  • Save kalashnikovisme/f362ee39ecfb3d2997d5861006dbe3f7 to your computer and use it in GitHub Desktop.
Save kalashnikovisme/f362ee39ecfb3d2997d5861006dbe3f7 to your computer and use it in GitHub Desktop.
Youtube embed auto size (Coffeescript, jQuery)
parent_div_width = $('.youtube_embed').parents('div').first().width()
$youtube_embed = $('.youtube_embed iframe')
$youtube_embed.prop('width', "#{parent_div_width}px")
$youtube_embed.prop('height', "#{parent_div_width / 16 * 9}px")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment