$(document).ready(function () {
        $("#iframe").resize(function () {
            var width = $("#iframe").width();
            var height = width / 1.77777777;
 
            $("#iframe").height(height);
        });
 
        $(window).resize(function () {
            $("#iframe").resize();
        });
 
        $("#iframe").resize();
    });
