How to add to the height of the document a few px?

$(function() { var iframe = $('#iframe', parent.document.body); iframe.height($(document.body).height()); }); 

    1 answer 1

     $(function() { var iframe = $('#iframe', parent.document.body); iframe.height($(document.body).height() + 10); });