Click to See Complete Forum and Search --> : controlling parent window from an iframe


beemee_freeserv
02-11-2004, 04:44 AM
Is it possible to control the parent window of an Iframe?

If have got a page with an Iframe inside, in the Iframe is a button which needs to set the backgroundcolor of the mainwindow, is this possible?

Kor
02-11-2004, 05:36 AM
to refere something from iframe to main, use parent. reference.

your case

parent.document.body.style.backgroundColor = '....'

beemee_freeserv
02-11-2004, 05:37 AM
thanx :D