$(window).on('load', function () { var $iframe = $('#frame-proposta'); fetchProposta() .then(function (data) { if (data == null) return; $('#svg-container').css("display", "none"); $iframe.attr('src', '/modelos/'+data.modeloExibicao+'/index.html?p='+data.slugProposta); countProposta(); }) });