Forum Moderators: open
I'm a relatively new scripter and this is my first post. Please forgive possible ignorance
I'm trying to create an iframe without scrollbars with javascript (see code below). It works great in Firefox but scrollbars keep appearing in IE.
Does anyone know a solution to this that works in IE?
tnx a lot
code:
ifrm = document.createElement("IFRAME");
ifrm.src="example.htm";
ifrm.style.width = 280+"px";
ifrm.style.height = 180+"px";
ifrm.style.border = "0px";
ifrm.style.overflow="hidden";
ifrm.className = "verborgen";
document.body.appendChild(ifrm);