• 28-08-2014, 13:43:27
    #1
    Üyeliği durduruldu
    var hidframe = document.createElement('iframe');
    hidframe.setAttribute('src','#');
    hidframe.style.width = "468px"; 
    hidframe.style.height = "60px";
    
    
    document.getElementById('hifbody').appendChild(hidframe);
    Elimdeki kod bu. Bunda nasıl çerçeveyi kaldırabiliriz. (scrollbar'ı)
  • 28-08-2014, 13:46:23
    #2
    Onursal Üye
    furkandemirci adlı üyeden alıntı: mesajı görüntüle
    var hidframe = document.createElement('iframe');
    hidframe.setAttribute('src','#');
    hidframe.style.width = "468px"; 
    hidframe.style.height = "60px";
    
    
    document.getElementById('hifbody').appendChild(hidframe);
    Elimdeki kod bu. Bunda nasıl çerçeveyi kaldırabiliriz. (scrollbar'ı)
    Şöyle dener misiniz?

    var hidframe = document.createElement('iframe');
    hidframe.setAttribute('src','#');
    hidframe.setAttribute('frameborder','0');
    hidframe.setAttribute('scrolling','no');
    hidframe.style.width = "468px"; 
    hidframe.style.height = "60px";
    
    
    document.getElementById('hifbody').appendChild(hidframe);