I am trying to insert an iframe into the browser DOM via javascript and want to remove the border if IE but can\'t seem to. I have tried these to no avail:
i
The frameBorder attribute exists directly on the iframe element, is not a CSS property.
Try with:
iframeElement.frameBorder = 0;