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);