אשכול: iframe
View Single Post
ישן 15-06-06, 10:50   # 6
-VladK-
הוסטסניון
 
-VladK-'s Avatar
 
מיני פרופיל
תאריך הצטרפות: Apr 2006
גיל: 34
הודעות: 2,182

-VladK- לא מחובר  

ציטוט:
נכתב במקור על ידי somebody
קח:
HTML קוד:
function resizeIFrame(aID) {
 
    obj = document.getElementById(aID);
    // if contentDocument exists, W3C compliant (Mozilla)
    if (document.getElementById(aID).contentDocument){
         
        obj.style.height = document.getElementById(aID).contentDocument.body.scrollHeight;
    }
    else { 
        // IE 
        obj.style.height = document.frames(aID).document.body.scrollHeight;
    } 
  }
במאפינים של ה IFRAME:

HTML קוד:
allowtransparency="true" onload="resizeIFrame(this.id)"
זאת אומרת:
<iframe..........(באזור הזה)></iframe>

אמור לעבוד
תודה! גם אני חיפשתי את זה!
  Reply With Quote