Hi i want to resize an iframe by its content
frame = document.getElementById(frameId);
innerDoc = frame.contentWindow.document;
objToResize = (frame.style) ? frame.style : frame;
objToResize.height = innerDoc.body.scrollHeight + 10;
but when the iframe is on an other domain i get
Unsafe JavaScript attempt to access frame
is there any other way to do this?