אשכול: iframe
View Single Post
ישן 14-06-06, 17:39   # 5
somebody
A Al Alm Almo Almog!
תודה על תרומתך!
 
somebody's Avatar
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: hadera CiTy
גיל: 34
הודעות: 4,005
שלח הודעה באמצעות MSN אל somebody

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>

אמור לעבוד
__________________
דוא"ל: almog.zimel ב ג'מייל נקודה קום
מסנג'ר: almog שטרודל freetopsite נקודה co נקודה il

  Reply With Quote