Live-Demo var aspectratio = 16/9; $(window).on("load", function() { var width = Math.min($("#contentdiv").width(), 1024); var height = width / aspectratio; $('#playerdiv').html(''.format('wiezowieczachod', width, height)); }); $(window).on("resize", function() { var width = Math.min($("#contentdiv").width(), 1024); var height = width / aspectratio; $('#playeriframe').width(width).height(height); }); String.prototype.format = function () { var args = arguments; return this.replace(/\{\{|\}\}|\{(\d+)\}/g, function (m, n) { if (m == "{{") { return "{"; } if (m == "}}") { return "}"; } return args[n]; }); };