Skip to content

Instantly share code, notes, and snippets.

@mikeott
Last active November 11, 2022 06:02
Show Gist options
  • Select an option

  • Save mikeott/9622c9ff5f44a69f24c4059df522eb87 to your computer and use it in GitHub Desktop.

Select an option

Save mikeott/9622c9ff5f44a69f24c4059df522eb87 to your computer and use it in GitHub Desktop.
Force 16 x 9 CSS attribute
$( document ).ready(function() {
var width = $('iframe').width();
$('iframe').css({
'width': width,
'height': width*(9/16)
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment