// vanilla
document.addEventListener('DOMContentLoaded', function() {
var iframe = document.querySelector('.your_classname');
if (iframe) {
iframe.addEventListener('load', function() {
var iframeDoc = iframe.contentDocument || iframe.contentWindow.document;
iframeDoc.body.style.marginTop = '83px';
});
}
});
// jQuery
var iframe = $('.your_classname').find('iframe');
iframe.on('load', function() {
$(this).contents().find('body').css('margin-top', '83px');
});