tonyf
tonyf

Reputation: 35567

iFrame with background colour in IE6

Is it possible to style an iframe with a background colour within MS IE6?

If so, how?

Upvotes: 1

Views: 389

Answers (1)

Josh Stodola
Josh Stodola

Reputation: 82513

You can do it programatically from the "parent" page with Javsacript like this...

window.frames["frameName"].document.body.style.backgroundColor = "green";

In order for this to work, however, the page within the frame has to sit on the same domain as the parent.

Upvotes: 4

Related Questions