Это выглядело бы так: .height()
:
function setHeight() {
$('.targetIframe', parent.document).height(document.body.offsetHeight);
}
Или для буквального атрибута height
:
function setHeight() {
$('.targetIframe', parent.document).attr('height', document.body.offsetHeight);
}