Created
May 16, 2016 18:34
-
-
Save kalashnikovisme/f362ee39ecfb3d2997d5861006dbe3f7 to your computer and use it in GitHub Desktop.
Youtube embed auto size (Coffeescript, jQuery)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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